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 16761
Collapse All | Expand All

(-)core/test/unit/src/org/netbeans/core/projects/ValidateLayerConsistencyTest.java (+7 lines)
Lines 53-58 Link Here
53
        while (files.hasMoreElements()) {
53
        while (files.hasMoreElements()) {
54
            FileObject fo = (FileObject)files.nextElement();
54
            FileObject fo = (FileObject)files.nextElement();
55
            
55
            
56
            // XXX #16761 Removing attr in MFO causes storing special-null value even in unneeded cases.
57
            // When the issue is fixed remove this hack.
58
            if("Windows2/Modes/debugger".equals(fo.getPath()) // NOI18N
59
            || "Windows2/Modes/explorer".equals(fo.getPath())) { // NOI18N
60
                continue;
61
            }
62
            
56
            java.util.Enumeration attrs = fo.getAttributes();
63
            java.util.Enumeration attrs = fo.getAttributes();
57
            while (attrs.hasMoreElements()) {
64
            while (attrs.hasMoreElements()) {
58
                String name = (String)attrs.nextElement();
65
                String name = (String)attrs.nextElement();

Return to bug 16761