Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarin Swanson2002-03-11 22:13:17 +0000
committerDarin Swanson2002-03-11 22:13:17 +0000
commit16cd9f8a9449355e7c563835abf0fd627ce8b95b (patch)
tree6d1d4fa0f61f74b836a9dbb79a91d879e2add15e /org.eclipse.debug.core
parent209223ad5eb2360f8f61f76802ab2e5fb0ab45c0 (diff)
downloadeclipse.platform.debug-16cd9f8a9449355e7c563835abf0fd627ce8b95b.tar.gz
eclipse.platform.debug-16cd9f8a9449355e7c563835abf0fd627ce8b95b.tar.xz
eclipse.platform.debug-16cd9f8a9449355e7c563835abf0fd627ce8b95b.zip
Nls'ing
Diffstat (limited to 'org.eclipse.debug.core')
-rw-r--r--org.eclipse.debug.core/core/org/eclipse/debug/core/DebugPlugin.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/org.eclipse.debug.core/core/org/eclipse/debug/core/DebugPlugin.java b/org.eclipse.debug.core/core/org/eclipse/debug/core/DebugPlugin.java
index 67fc910d0..12f3fbc50 100644
--- a/org.eclipse.debug.core/core/org/eclipse/debug/core/DebugPlugin.java
+++ b/org.eclipse.debug.core/core/org/eclipse/debug/core/DebugPlugin.java
@@ -246,7 +246,7 @@ public class DebugPlugin extends Plugin {
IConfigurationElement config = (IConfigurationElement)fStatusHandlers.get(key);
if (config != null) {
try {
- return (IStatusHandler)config.createExecutableExtension("class");
+ return (IStatusHandler)config.createExecutableExtension("class"); //$NON-NLS-1$
} catch (CoreException e) {
log(e.getStatus());
}
@@ -557,8 +557,8 @@ public class DebugPlugin extends Plugin {
IConfigurationElement[] infos= extensionPoint.getConfigurationElements();
for (int i= 0; i < infos.length; i++) {
IConfigurationElement configurationElement = infos[i];
- String id = configurationElement.getAttribute("plugin");
- String code = configurationElement.getAttribute("code");
+ String id = configurationElement.getAttribute("plugin"); //$NON-NLS-1$
+ String code = configurationElement.getAttribute("code"); //$NON-NLS-1$
if (id != null && code != null) {
try {
@@ -566,11 +566,11 @@ public class DebugPlugin extends Plugin {
fStatusHandlers.put(key, configurationElement);
} catch (NumberFormatException e) {
// invalid status handler
- invalidStatusHandler(e, configurationElement.getAttribute("id"));
+ invalidStatusHandler(e, configurationElement.getAttribute("id")); //$NON-NLS-1$
}
} else {
// invalid status handler
- invalidStatusHandler(null, configurationElement.getAttribute("id"));
+ invalidStatusHandler(null, configurationElement.getAttribute("id")); //$NON-NLS-1$
}
}
}

Back to the top