Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDani Megert2003-07-23 10:29:21 +0000
committerDani Megert2003-07-23 10:29:21 +0000
commita9949c9c02cf76012b9503a99255a75c5480d4d2 (patch)
tree4b0fc4a42fc33044dde860cc51fccb656cb41669 /org.eclipse.jface.text/src/org/eclipse/jface/text/presentation
parent3d96c694bc616d876c47aa551a89de6b5b0f781d (diff)
downloadeclipse.platform.text-a9949c9c02cf76012b9503a99255a75c5480d4d2.tar.gz
eclipse.platform.text-a9949c9c02cf76012b9503a99255a75c5480d4d2.tar.xz
eclipse.platform.text-a9949c9c02cf76012b9503a99255a75c5480d4d2.zip
Cleaned up code according to new compiler warnings
Diffstat (limited to 'org.eclipse.jface.text/src/org/eclipse/jface/text/presentation')
-rw-r--r--org.eclipse.jface.text/src/org/eclipse/jface/text/presentation/PresentationReconciler.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.jface.text/src/org/eclipse/jface/text/presentation/PresentationReconciler.java b/org.eclipse.jface.text/src/org/eclipse/jface/text/presentation/PresentationReconciler.java
index dd7a559dc51..c436d1d0307 100644
--- a/org.eclipse.jface.text/src/org/eclipse/jface/text/presentation/PresentationReconciler.java
+++ b/org.eclipse.jface.text/src/org/eclipse/jface/text/presentation/PresentationReconciler.java
@@ -216,7 +216,7 @@ public class PresentationReconciler implements IPresentationReconciler {
IRegion region= new Region(e.getOffset() + visible.getOffset(), e.getLength());
return region;
}
- };
+ }
/** The map of presentation damagers. */
private Map fDamagers;

Back to the top