Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.help/src/org/eclipse/help/internal/HelpData.java')
-rw-r--r--org.eclipse.help/src/org/eclipse/help/internal/HelpData.java16
1 files changed, 8 insertions, 8 deletions
diff --git a/org.eclipse.help/src/org/eclipse/help/internal/HelpData.java b/org.eclipse.help/src/org/eclipse/help/internal/HelpData.java
index 0ac32123a..5b14dda0c 100644
--- a/org.eclipse.help/src/org/eclipse/help/internal/HelpData.java
+++ b/org.eclipse.help/src/org/eclipse/help/internal/HelpData.java
@@ -72,19 +72,19 @@ public class HelpData {
}
String helpDataFile = Platform.getPreferencesService().getString(HelpPlugin.PLUGIN_ID, HelpPlugin.HELP_DATA_KEY, "", null); //$NON-NLS-1$
if (helpDataFile.length() > 0) {
- if (helpDataFile.startsWith(PLUGINS_ROOT_SLASH)) {
- int nextSlash = helpDataFile.indexOf('/', PLUGINS_ROOT_SLASH.length());
- if (nextSlash > 0) {
- pluginId = helpDataFile.substring(PLUGINS_ROOT_SLASH.length(), nextSlash);
- helpDataFile = helpDataFile.substring(nextSlash + 1);
- }
+ if (helpDataFile.startsWith(PLUGINS_ROOT_SLASH)) {
+ int nextSlash = helpDataFile.indexOf('/', PLUGINS_ROOT_SLASH.length());
+ if (nextSlash > 0) {
+ pluginId = helpDataFile.substring(PLUGINS_ROOT_SLASH.length(), nextSlash);
+ helpDataFile = helpDataFile.substring(nextSlash + 1);
+ }
}
}
if (helpDataFile.length() > 0 && pluginId != null) {
Bundle bundle = Platform.getBundle(pluginId);
if (bundle != null) {
- URL helpDataUrl = bundle.getEntry(helpDataFile);
- productHelpData = new HelpData(helpDataUrl);
+ URL helpDataUrl = bundle.getEntry(helpDataFile);
+ productHelpData = new HelpData(helpDataUrl);
}
}
if (productHelpData == null) {

Back to the top