View | Details | Raw Unified | Return to bug 126673
Collapse All | Expand All

(-)model/org/eclipse/jdt/internal/core/Buffer.java (-1 / +3 lines)
Lines 106-112 Link Here
106
		this.flags |= F_IS_CLOSED;
106
		this.flags |= F_IS_CLOSED;
107
	}
107
	}
108
	notifyChanged(event); // notify outside of synchronized block
108
	notifyChanged(event); // notify outside of synchronized block
109
	this.changeListeners = null;
109
	synchronized(this) {
110
		this.changeListeners = null;
111
	}
110
}
112
}
111
/**
113
/**
112
 * @see IBuffer
114
 * @see IBuffer

Return to bug 126673