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() {