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

(-)ClassPathProviderImpl.java (-8 / +11 lines)
Lines 361-366 Link Here
361
            String classpathEval = project.evaluator().evaluate(classpathS);
361
            if(classpathS == null) {
362
            List/*<PathResourceImplementation>*/ entries = new ArrayList();
362
                extraCompilationUnits.put(pkgroot, ClassPathSupport.createClassPath(new ArrayList(0)));
363
            try {
363
            } else {
364
                addPathFromProjectEvaluated(entries, classpathEval);
364
                String classpathEval = project.evaluator().evaluate(classpathS);
365
            } catch (MalformedURLException e) {
365
                List/*<PathResourceImplementation>*/ entries = new ArrayList();
366
                Util.err.notify(e);
366
                try {
367
--
367
                    addPathFromProjectEvaluated(entries, classpathEval);
368
                } catch (MalformedURLException e) {
369
                    Util.err.notify(e);
370
                }
371
                extraCompilationUnits.put(pkgroot, ClassPathSupport.createClassPath(entries));
Line 368 Link Here
368
            extraCompilationUnits.put(pkgroot, ClassPathSupport.createClassPath(entries));

Return to bug 47158