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

(-)a/o.n.bootstrap/src/org/netbeans/ProxyClassLoader.java (-1 / +3 lines)
Lines 483-489 Link Here
483
                pkg = par.getPackageFast(name, false);
483
                pkg = par.getPackageFast(name, false);
484
                if (pkg != null) break;
484
                if (pkg != null) break;
485
            }
485
            }
486
            if (pkg == null && shouldDelegateResource(path, null)) {
486
            // pretend the resource ends with "/". This works better with hidden package and
487
            // prefix-based checks.
488
            if (pkg == null && shouldDelegateResource(path + "/", null)) {
487
                // Cannot access either Package.getSystemPackages nor ClassLoader.getPackage
489
                // Cannot access either Package.getSystemPackages nor ClassLoader.getPackage
488
                // from here, so do the best we can though it will cause unnecessary
490
                // from here, so do the best we can though it will cause unnecessary
489
                // duplication of the package cache (PCL.packages vs. CL.packages):
491
                // duplication of the package cache (PCL.packages vs. CL.packages):

Return to bug 269972