Index: apisupport/project/src/org/netbeans/modules/apisupport/project/universe/ModuleList.java =================================================================== RCS file: /cvs/apisupport/project/src/org/netbeans/modules/apisupport/project/universe/ModuleList.java,v retrieving revision 1.9 diff -r1.9 ModuleList.java 580a581 > private static final String PROJECT_XML = "nbproject" + File.separatorChar + "project.xml"; 587,588c588,595 < File projectXml = new File(basedir, "nbproject" + File.separatorChar + "project.xml"); // NOI18N < if (!projectXml.isFile()) { --- > //Bypass CVS dirs > if ("CVS".equals(basedir.getName())) { > return null; > } > File projectXml = new File(basedir, PROJECT_XML); // NOI18N > > //projectXml.isFile() appears to be expensive on some systems; exists is cheaper > if (!projectXml.exists() || !projectXml.isFile()) {