Browse Source

ignore CVS resources.

tags/V1_5_2rc1
aclement 18 years ago
parent
commit
59a6505110
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      ajde/testsrc/org/aspectj/ajde/ResourceCopyTestCase.java

+ 2
- 2
ajde/testsrc/org/aspectj/ajde/ResourceCopyTestCase.java View File

@@ -280,8 +280,8 @@ public class ResourceCopyTestCase extends AjdeTestCase {
public static final FileFilter aspectjResourceFileFilter = new FileFilter() {
public boolean accept(File pathname) {
String name = pathname.getName().toLowerCase();
return (!name.endsWith(".class") && !name.endsWith(".java") && !name.endsWith(".aj"));
boolean isCVSRelated = name.indexOf("/cvs/")!=-1;
return (!isCVSRelated && !name.endsWith(".class") && !name.endsWith(".java") && !name.endsWith(".aj"));
}
};


Loading…
Cancel
Save