Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Keller2010-06-25 13:02:21 +0000
committerMarkus Keller2010-06-25 13:02:21 +0000
commit045283ef6934d48591ede60ad63612cd9fe38a09 (patch)
treef0833b91fd123660aa93e33a1c62f58a4b1b1ffa /org.eclipse.jface.text/projection
parent3790d5457ab12f6b928d61e2be8ece444aa599ea (diff)
downloadeclipse.platform.text-045283ef6934d48591ede60ad63612cd9fe38a09.tar.gz
eclipse.platform.text-045283ef6934d48591ede60ad63612cd9fe38a09.tar.xz
eclipse.platform.text-045283ef6934d48591ede60ad63612cd9fe38a09.zip
fixed wrong usages of affect* & effect*
Diffstat (limited to 'org.eclipse.jface.text/projection')
-rw-r--r--org.eclipse.jface.text/projection/org/eclipse/jface/text/source/projection/ProjectionViewer.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.jface.text/projection/org/eclipse/jface/text/source/projection/ProjectionViewer.java b/org.eclipse.jface.text/projection/org/eclipse/jface/text/source/projection/ProjectionViewer.java
index 6aedcf3e8b8..02e0145cbb5 100644
--- a/org.eclipse.jface.text/projection/org/eclipse/jface/text/source/projection/ProjectionViewer.java
+++ b/org.eclipse.jface.text/projection/org/eclipse/jface/text/source/projection/ProjectionViewer.java
@@ -1325,7 +1325,7 @@ public class ProjectionViewer extends SourceViewer implements ITextViewerExtensi
IRegion rangeIndication= getRangeIndication();
if (moveCursor && fProjectionAnnotationModel != null && (rangeIndication == null || offset != rangeIndication.getOffset() || length != rangeIndication.getLength())) {
List expand= new ArrayList(2);
- // expand the immediate effected collapsed regions
+ // expand the immediate affected collapsed regions
Iterator iterator= fProjectionAnnotationModel.getAnnotationIterator();
while (iterator.hasNext()) {
ProjectionAnnotation annotation= (ProjectionAnnotation)iterator.next();

Back to the top