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

(-)JMManager.java (+18 lines)
Lines 301-306 Link Here
301
        classPath.addPropertyChangeListener (this);
301
        classPath.addPropertyChangeListener (this);
302
    }
302
    }
303
303
304
     public void resetExtents() {
305
        getDefaultRepository().beginTrans(true);
306
        boolean fail = true;
307
        try {
308
            synchronized (this) {
309
                Set sidSet = new HashSet(sids.keySet());
310
                
311
                for (Iterator it = sidSet.iterator(); it.hasNext();) {
312
                    String uri = (String) it.next();
313
                    disposeCodebase(uri);
314
                }
315
                fail = false;
316
            }
317
        } finally {
318
            getDefaultRepository().endTrans(fail);
319
        }
320
    }
321
    
304
    private void init() {
322
    private void init() {
305
        if (mainExtent == null) {
323
        if (mainExtent == null) {
306
            repository.beginTrans(true);
324
            repository.beginTrans(true);

Return to bug 76297