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

(-)core/src/org/netbeans/core/modules/ProxyClassLoader.java (+1 lines)
Lines 91-96 Link Here
91
     * It will be removed from the parent lists of all existing ProxyClassLoaders.
91
     * It will be removed from the parent lists of all existing ProxyClassLoaders.
92
     */
92
     */
93
    public void destroy() {
93
    public void destroy() {
94
        if (!Boolean.getBoolean("org.netbeans.core.modules.destroy-classloaders")) return; // NOI18N
94
        synchronized (instances) {
95
        synchronized (instances) {
95
            Iterator it = instances.iterator();
96
            Iterator it = instances.iterator();
96
            while (it.hasNext()) {
97
            while (it.hasNext()) {

Return to bug 19717