Author: dazarov
Date: 2009-04-09 08:32:58 -0400 (Thu, 09 Apr 2009)
New Revision: 14631
Modified:
trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/internal/core/refactoring/RenameComponentProcessor.java
Log:
https://jira.jboss.org/jira/browse/JBIDE-1077
Modified:
trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/internal/core/refactoring/RenameComponentProcessor.java
===================================================================
---
trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/internal/core/refactoring/RenameComponentProcessor.java 2009-04-09
12:22:34 UTC (rev 14630)
+++
trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/internal/core/refactoring/RenameComponentProcessor.java 2009-04-09
12:32:58 UTC (rev 14631)
@@ -322,21 +322,7 @@
}
private void scanProperties(IFile file, String content){
- //System.out.println("ScanProperties "+file.getName());
-// try{
-// FileInputStream fis = new FileInputStream(new File(file.getLocationURI()));
-// PropertyResourceBundle rb = new PropertyResourceBundle(fis);
-// for(String key : rb.keySet()){
-// //System.out.println("Key - "+key+" Val -
"+rb.getString(key));
-// String value = rb.getString(key);
-// if(value.indexOf('{')>-1)
-// scanString(file, value, 0);
-// }
-// }catch(FileNotFoundException ex){
-// SeamCorePlugin.getDefault().logError(ex);
-// }catch(IOException ex){
-// SeamCorePlugin.getDefault().logError(ex);
-// }
+ scanString(file, content, 0);
}
/*