Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.jface.text/src/org/eclipse/jface/text/source/AnnotationPainter.java')
-rw-r--r--org.eclipse.jface.text/src/org/eclipse/jface/text/source/AnnotationPainter.java9
1 files changed, 3 insertions, 6 deletions
diff --git a/org.eclipse.jface.text/src/org/eclipse/jface/text/source/AnnotationPainter.java b/org.eclipse.jface.text/src/org/eclipse/jface/text/source/AnnotationPainter.java
index dbe7d0912a3..c88ae3cd6c2 100644
--- a/org.eclipse.jface.text/src/org/eclipse/jface/text/source/AnnotationPainter.java
+++ b/org.eclipse.jface.text/src/org/eclipse/jface/text/source/AnnotationPainter.java
@@ -1067,12 +1067,9 @@ public class AnnotationPainter implements IPainter, PaintListener, IAnnotationMo
// changes any more. If the document gets modified between
// now and running the posted runnable, the position information
// is not accurate any longer.
- textWidgetDisplay.asyncExec(new Runnable() {
- @Override
- public void run() {
- if (fTextWidget != null && !fTextWidget.isDisposed())
- updatePainting(event);
- }
+ textWidgetDisplay.asyncExec(() -> {
+ if (fTextWidget != null && !fTextWidget.isDisposed())
+ updatePainting(event);
});
}
}

Back to the top