Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.help.base/src/org/eclipse/help/internal/base/scope/ScopeRegistry.java')
-rw-r--r--org.eclipse.help.base/src/org/eclipse/help/internal/base/scope/ScopeRegistry.java4
1 files changed, 2 insertions, 2 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 35bf98fc1..5ef5b6542 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
@@ -219,14 +219,14 @@ public class ScopeRegistry {
return format(next,current);
next+=current;
}
- if (next.isEmpty())
+ if (next.isEmpty())
return null;
return next;
}
private String format(String next,char current)
{
- if (next.isEmpty())
+ if (next.isEmpty())
{
cursor++;
return current+""; //$NON-NLS-1$

Back to the top