Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 407436
Collapse All | Expand All

(-)compare/org/eclipse/compare/contentmergeviewer/TextMergeViewer.java (-2 / +4 lines)
Lines 3011-3018 Link Here
3011
				public IStatus runInUIThread(IProgressMonitor monitor) {
3011
				public IStatus runInUIThread(IProgressMonitor monitor) {
3012
					if (!getControl().isDisposed()) {
3012
					if (!getControl().isDisposed()) {
3013
						doDiff();
3013
						doDiff();
3014
						invalidateLines();
3014
						if (!getControl().isDisposed()) { // doDiff() might have closed the editor
3015
						updateLines(doc);
3015
							invalidateLines();
3016
							updateLines(doc);
3017
						}
3016
					}
3018
					}
3017
					return Status.OK_STATUS;
3019
					return Status.OK_STATUS;
3018
				}
3020
				}

Return to bug 407436