Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin Barnes2005-04-06 21:00:44 +0000
committerKevin Barnes2005-04-06 21:00:44 +0000
commit6d7e372537803cc9694e60496d5c722ad842df6e (patch)
treed8e65733a7046e47139210c1f7ebc658b30027ba /org.eclipse.debug.core/core/org/eclipse/debug/core/DebugEvent.java
parent248a96d1c663940cd16eccecc70ecba7835d003e (diff)
downloadeclipse.platform.debug-6d7e372537803cc9694e60496d5c722ad842df6e.tar.gz
eclipse.platform.debug-6d7e372537803cc9694e60496d5c722ad842df6e.tar.xz
eclipse.platform.debug-6d7e372537803cc9694e60496d5c722ad842df6e.zip
Bug 90318 - Change string externalization to use new format
Diffstat (limited to 'org.eclipse.debug.core/core/org/eclipse/debug/core/DebugEvent.java')
-rw-r--r--org.eclipse.debug.core/core/org/eclipse/debug/core/DebugEvent.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.debug.core/core/org/eclipse/debug/core/DebugEvent.java b/org.eclipse.debug.core/core/org/eclipse/debug/core/DebugEvent.java
index 0c59979d2..af63e560e 100644
--- a/org.eclipse.debug.core/core/org/eclipse/debug/core/DebugEvent.java
+++ b/org.eclipse.debug.core/core/org/eclipse/debug/core/DebugEvent.java
@@ -305,9 +305,9 @@ public final class DebugEvent extends EventObject {
public DebugEvent(Object eventSource, int kind, int detail) {
super(eventSource);
if ((kind & (RESUME | SUSPEND | CREATE | TERMINATE | CHANGE | MODEL_SPECIFIC)) == 0)
- throw new IllegalArgumentException(DebugCoreMessages.getString("DebugEvent.illegal_kind")); //$NON-NLS-1$
+ throw new IllegalArgumentException(DebugCoreMessages.DebugEvent_illegal_kind); //$NON-NLS-1$
if (kind != MODEL_SPECIFIC && detail != UNSPECIFIED && (detail & (STEP_END | STEP_INTO | STEP_OVER | STEP_RETURN | BREAKPOINT | CLIENT_REQUEST |EVALUATION | EVALUATION_IMPLICIT | STATE | CONTENT)) == 0)
- throw new IllegalArgumentException(DebugCoreMessages.getString("DebugEvent.illegal_detail")); //$NON-NLS-1$
+ throw new IllegalArgumentException(DebugCoreMessages.DebugEvent_illegal_detail); //$NON-NLS-1$
fKind= kind;
fDetail= detail;
}

Back to the top