From 0d101034e22705a5fa757d82430ec0a815e78051 Mon Sep 17 00:00:00 2001 From: Marc Khouzam Date: Fri, 16 May 2008 15:13:00 +0000 Subject: [PATCH] Bug 232517 Fix toString() method --- .../eclipse/dd/mi/service/command/commands/ExprMetaCommand.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/org.eclipse.dd.mi/src/org/eclipse/dd/mi/service/command/commands/ExprMetaCommand.java b/plugins/org.eclipse.dd.mi/src/org/eclipse/dd/mi/service/command/commands/ExprMetaCommand.java index e20403d2061..86da34f1b51 100644 --- a/plugins/org.eclipse.dd.mi/src/org/eclipse/dd/mi/service/command/commands/ExprMetaCommand.java +++ b/plugins/org.eclipse.dd.mi/src/org/eclipse/dd/mi/service/command/commands/ExprMetaCommand.java @@ -52,7 +52,7 @@ public class ExprMetaCommand implements ICommand { @Override public String toString() { - return getClass().toString() + fCtx == null ? "null" : fCtx.toString(); //$NON-NLS-1$ + return getClass().getName() + (fCtx == null ? "null" : fCtx.toString()); //$NON-NLS-1$ } public String getCommandControlFilter() {