Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Goldthorpe2008-12-09 00:08:18 +0000
committerChris Goldthorpe2008-12-09 00:08:18 +0000
commitd7b8e5e32ee19ba56d6bea0dff5f64919d73133b (patch)
tree59576630e130206d997743632073c6728474f08e /org.eclipse.help
parentf362fc0098cacdb180ed8b4a531a178ed6afcc25 (diff)
downloadeclipse.platform.ua-d7b8e5e32ee19ba56d6bea0dff5f64919d73133b.tar.gz
eclipse.platform.ua-d7b8e5e32ee19ba56d6bea0dff5f64919d73133b.tar.xz
eclipse.platform.ua-d7b8e5e32ee19ba56d6bea0dff5f64919d73133b.zip
Bug 258006 – [Help] ignoredTOCS preference has no effect in I20081208-0921v20081208
Diffstat (limited to 'org.eclipse.help')
-rw-r--r--org.eclipse.help/src/org/eclipse/help/internal/HelpData.java2
1 files changed, 1 insertions, 1 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 b8472d874..a4614ee2e 100644
--- a/org.eclipse.help/src/org/eclipse/help/internal/HelpData.java
+++ b/org.eclipse.help/src/org/eclipse/help/internal/HelpData.java
@@ -77,7 +77,7 @@ public class HelpData {
}
}
}
- if (helpDataFile != null && pluginId != null) {
+ if (helpDataFile.length() > 0 && pluginId != null) {
Bundle bundle = Platform.getBundle(pluginId);
if (bundle != null) {
URL helpDataUrl = bundle.getEntry(helpDataFile);

Back to the top