Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Goldthorpe2010-07-29 16:56:37 +0000
committerChris Goldthorpe2010-07-29 16:56:37 +0000
commitd3d7ed4d4e1be77160c0a9f6a6cc9f5c604f4b14 (patch)
tree42e2ac5c18a3fe328b21b29c4728b13809edbed0 /org.eclipse.help.base
parent72aba27d097a3631d33125dbe6823af45ce1a85e (diff)
downloadeclipse.platform.ua-d3d7ed4d4e1be77160c0a9f6a6cc9f5c604f4b14.tar.gz
eclipse.platform.ua-d3d7ed4d4e1be77160c0a9f6a6cc9f5c604f4b14.tar.xz
eclipse.platform.ua-d3d7ed4d4e1be77160c0a9f6a6cc9f5c604f4b14.zip
Bug 321247 - [Help] FileNotFoundException starting infocenterv20100729
Diffstat (limited to 'org.eclipse.help.base')
-rw-r--r--org.eclipse.help.base/src/org/eclipse/help/internal/base/HelpApplication.java4
1 files changed, 2 insertions, 2 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 48fcbf898..f95f5dd24 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
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2007 IBM Corporation and others.
+ * Copyright (c) 2000, 2010 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -48,7 +48,7 @@ public class HelpApplication implements IApplication, IExecutableExtension {
return EXIT_RESTART;
}
- metadata = new File(Platform.getLocation().toFile(), ".metadata/"); //$NON-NLS-1$
+ metadata = HelpBasePlugin.getDefault().getStateLocation().toFile();
if (!BaseHelpSystem.ensureWebappRunning()) {
System.out.println(NLS.bind(HelpBaseResources.HelpApplication_couldNotStart, Platform.getLogFileLocation().toOSString()));
return EXIT_OK;

Back to the top