Author: dazarov
Date: 2009-04-08 12:37:50 -0400 (Wed, 08 Apr 2009)
New Revision: 14610
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-08
15:46:17 UTC (rev 14609)
+++
trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/internal/core/refactoring/RenameComponentProcessor.java 2009-04-08
16:37:50 UTC (rev 14610)
@@ -347,20 +347,20 @@
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);
- }
+// 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);
+// }
}
/*