Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Austin2010-04-09 13:58:19 +0000
committerChris Austin2010-04-09 13:58:19 +0000
commit65d82609a6f49fad587bfed473c7b02fd4aeb250 (patch)
tree877b4df319479e9b213b5f29b2397fa64fde8860 /org.eclipse.help.base
parent13d06c7e596e8c1ffe213b8a47b0f085df23b039 (diff)
downloadeclipse.platform.ua-65d82609a6f49fad587bfed473c7b02fd4aeb250.tar.gz
eclipse.platform.ua-65d82609a6f49fad587bfed473c7b02fd4aeb250.tar.xz
eclipse.platform.ua-65d82609a6f49fad587bfed473c7b02fd4aeb250.zip
Bug 308604 - 3 warnings in official build
Diffstat (limited to 'org.eclipse.help.base')
-rw-r--r--org.eclipse.help.base/src/org/eclipse/help/internal/base/scope/ScopeRegistry.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.help.base/src/org/eclipse/help/internal/base/scope/ScopeRegistry.java b/org.eclipse.help.base/src/org/eclipse/help/internal/base/scope/ScopeRegistry.java
index 94a10f26c..30583a2c7 100644
--- a/org.eclipse.help.base/src/org/eclipse/help/internal/base/scope/ScopeRegistry.java
+++ b/org.eclipse.help.base/src/org/eclipse/help/internal/base/scope/ScopeRegistry.java
@@ -197,7 +197,7 @@ public class ScopeRegistry {
{
String next = ""; //$NON-NLS-1$
- for (cursor=cursor;cursor<phrase.length();cursor++)
+ for (;cursor<phrase.length();cursor++)
{
char current = phrase.charAt(cursor);
if (current=='(')

Back to the top