This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

View | Details | Raw Unified | Return to bug 61579
Collapse All | Expand All

(-)apisupport/project/src/org/netbeans/modules/apisupport/project/universe/ModuleList.java (-3 / +9 lines)
Line 581 Link Here
581
    private static final String PROJECT_XML = "nbproject" + File.separatorChar + "project.xml";
Lines 587-588 Link Here
587
        File projectXml = new File(basedir, "nbproject" + File.separatorChar + "project.xml"); // NOI18N
588
        //Bypass CVS dirs
588
        if (!projectXml.isFile()) {
589
        if ("CVS".equals(basedir.getName())) {
589
--
590
            return null;
591
        }
592
        File projectXml = new File(basedir, PROJECT_XML); // NOI18N
593
        
594
        //projectXml.isFile() appears to be expensive on some systems;  exists is cheaper
595
        if (!projectXml.exists() || !projectXml.isFile()) {

Return to bug 61579