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

(-)CloneableEditorSupport.java (-1 / +3 lines)
Lines 394-400 Link Here
394
                // where another threads may operate already
394
                // where another threads may operate already
395
                if (!runningInAtomicLock) {
395
                if (!runningInAtomicLock) {
396
                    runningInAtomicLock = true;
396
                    runningInAtomicLock = true;
397
                    NbDocument.runAtomic(docToLoad, this);
397
		    synchronized (getPositionManager()) {
398
                	NbDocument.runAtomic(docToLoad, this);
399
		    }
398
400
399
                    // Add undoable listener after atomic change has finished
401
                    // Add undoable listener after atomic change has finished
400
                    synchronized (getLock()) {
402
                    synchronized (getLock()) {

Return to bug 38435