Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Goldthorpe2011-06-20 22:00:27 +0000
committerChris Goldthorpe2011-06-20 22:00:27 +0000
commitc80b06f1e13e672d31dde6d1d5d0b7c230f64b7e (patch)
treea1445abd682b4ecec1f896a82ba0b65f01ff9294
parent74d78f8fbc46d58d2f7cc8411c38903944df4c0c (diff)
downloadeclipse.platform.ua-c80b06f1e13e672d31dde6d1d5d0b7c230f64b7e.tar.gz
eclipse.platform.ua-c80b06f1e13e672d31dde6d1d5d0b7c230f64b7e.tar.xz
eclipse.platform.ua-c80b06f1e13e672d31dde6d1d5d0b7c230f64b7e.zip
Bug 321247 - [Help] FileNotFoundException starting infocenter
-rw-r--r--org.eclipse.help.base/src/org/eclipse/help/internal/base/HelpApplication.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/org.eclipse.help.base/src/org/eclipse/help/internal/base/HelpApplication.java b/org.eclipse.help.base/src/org/eclipse/help/internal/base/HelpApplication.java
index 7d2aeffed..cbdc218c9 100644
--- a/org.eclipse.help.base/src/org/eclipse/help/internal/base/HelpApplication.java
+++ b/org.eclipse.help.base/src/org/eclipse/help/internal/base/HelpApplication.java
@@ -133,6 +133,7 @@ public class HelpApplication implements IApplication, IExecutableExtension {
hostPortFile.deleteOnExit();
FileOutputStream out = null;
try {
+ metadata.mkdirs();
out = new FileOutputStream(hostPortFile);
p.store(out, null);
} finally {

Back to the top