Author: dazarov
Date: 2010-11-02 10:04:08 -0400 (Tue, 02 Nov 2010)
New Revision: 26186
Modified:
trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/jsf2/refactoring/RefactoringChangesFactory.java
Log:
https://jira.jboss.org/browse/JBIDE-6732
Modified:
trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/jsf2/refactoring/RefactoringChangesFactory.java
===================================================================
---
trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/jsf2/refactoring/RefactoringChangesFactory.java 2010-11-02
13:32:55 UTC (rev 26185)
+++
trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/jsf2/refactoring/RefactoringChangesFactory.java 2010-11-02
14:04:08 UTC (rev 26186)
@@ -97,6 +97,9 @@
}
}
} else if (resource instanceof IFolder) {
+ if(resource.getName().startsWith(".")) //$NON-NLS-1$
+ return;
+
IResource[] children = ((IFolder) resource).members();
if (children != null) {
for (int i = 0; i < children.length; i++) {
@@ -173,6 +176,9 @@
}
}
} else if (resource instanceof IFolder) {
+ if(resource.getName().startsWith(".")) //$NON-NLS-1$
+ return;
+
IResource[] children = ((IFolder) resource).members();
if (children != null) {
for (int i = 0; i < children.length; i++) {