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

(-)SourcePathImplementation.java (+6 lines)
Lines 107-112 Link Here
107
            if (this.resources == null) {
107
            if (this.resources == null) {
108
                List<PathResourceImplementation> result = new ArrayList<PathResourceImplementation>(roots.length);
108
                List<PathResourceImplementation> result = new ArrayList<PathResourceImplementation>(roots.length);
109
                for (URL root : roots) {
109
                for (URL root : roots) {
110
                    // Issue #123178 - GoldSpike copies ALL relevant files into a new directory, WEB-INF,
111
                    // which we don't want to scan!
112
                    String urlString = root.toExternalForm();
113
                    if (urlString.endsWith("/WEB-INF/")) {
114
                        continue;
115
                    }
110
                    result.add(ClassPathSupport.createResource(root));
116
                    result.add(ClassPathSupport.createResource(root));
111
                }
117
                }
112
                // adds java artifacts generated by wscompile and wsimport to resources to be available for code completion
118
                // adds java artifacts generated by wscompile and wsimport to resources to be available for code completion

Return to bug 123178