Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.jface.text/src/org/eclipse/jface/text/PaintManager.java')
-rw-r--r--org.eclipse.jface.text/src/org/eclipse/jface/text/PaintManager.java2
1 files changed, 0 insertions, 2 deletions
diff --git a/org.eclipse.jface.text/src/org/eclipse/jface/text/PaintManager.java b/org.eclipse.jface.text/src/org/eclipse/jface/text/PaintManager.java
index 03da4d53eb5..43f33509805 100644
--- a/org.eclipse.jface.text/src/org/eclipse/jface/text/PaintManager.java
+++ b/org.eclipse.jface.text/src/org/eclipse/jface/text/PaintManager.java
@@ -66,8 +66,6 @@ public final class PaintManager implements KeyListener, MouseListener, ISelectio
myEnd= Math.max(myStart, myEnd);
int yoursStart= fOffset;
- int yoursEnd= fOffset + fReplaceLength;// - 1;
- yoursEnd= Math.max(yoursStart, yoursEnd);
if (myEnd < yoursStart)
return;

Back to the top