Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDejan Gloszic2005-04-12 19:14:28 +0000
committerDejan Gloszic2005-04-12 19:14:28 +0000
commitf81164a15b4bb200447f8ef145042efb3f5fa249 (patch)
tree278ee7dcbe4993e36f143d45a4d9e7e2e004f75e /org.eclipse.help.appserver
parent4aeca40c0e18b13bc0cc0573ccc16b4b61eb0b02 (diff)
downloadeclipse.platform.ua-f81164a15b4bb200447f8ef145042efb3f5fa249.tar.gz
eclipse.platform.ua-f81164a15b4bb200447f8ef145042efb3f5fa249.tar.xz
eclipse.platform.ua-f81164a15b4bb200447f8ef145042efb3f5fa249.zip
*** empty log message ***v20050412cv20050412b
Diffstat (limited to 'org.eclipse.help.appserver')
-rw-r--r--org.eclipse.help.appserver/src/org/eclipse/help/internal/appserver/WebappManager.java7
1 files changed, 3 insertions, 4 deletions
diff --git a/org.eclipse.help.appserver/src/org/eclipse/help/internal/appserver/WebappManager.java b/org.eclipse.help.appserver/src/org/eclipse/help/internal/appserver/WebappManager.java
index 029d1bf7d..c290f263b 100644
--- a/org.eclipse.help.appserver/src/org/eclipse/help/internal/appserver/WebappManager.java
+++ b/org.eclipse.help.appserver/src/org/eclipse/help/internal/appserver/WebappManager.java
@@ -111,7 +111,7 @@ public class WebappManager {
Bundle bundle = Platform.getBundle(pluginId);
if (bundle == null) {
throw new CoreException(new Status(IStatus.ERROR,
- AppserverPlugin.PLUGIN_ID, IStatus.OK, NLS.bind("Appserver.cannotFindPlugin", pluginId), null));
+ AppserverPlugin.PLUGIN_ID, IStatus.OK, NLS.bind(AppserverResources.Appserver_cannotFindPlugin, pluginId), null));
}
// Note: we just look for one webapp directory.
@@ -119,7 +119,7 @@ public class WebappManager {
URL webappURL = Platform.find(bundle, path);
if (webappURL == null) {
throw new CoreException(new Status(IStatus.ERROR,
- AppserverPlugin.PLUGIN_ID, IStatus.OK, NLS.bind("Appserver.cannotFindPath", pluginId, path.toOSString()), null));
+ AppserverPlugin.PLUGIN_ID, IStatus.OK, NLS.bind(AppserverResources.Appserver_cannotFindPath, pluginId, path.toOSString()), null));
}
try {
@@ -128,8 +128,7 @@ public class WebappManager {
return new Path(webappLocation);
} catch (IOException ioe) {
throw new CoreException(new Status(IStatus.ERROR,
- AppserverPlugin.PLUGIN_ID, IStatus.OK, NLS.bind("Appserver.cannotResolvePath", pluginId, path.toOSString()), ioe));
+ AppserverPlugin.PLUGIN_ID, IStatus.OK, NLS.bind(AppserverResources.Appserver_cannotResolvePath, pluginId, path.toOSString()), ioe));
}
}
-
}

Back to the top