1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-03 14:25:37 +02:00

Bug 232517

Fix toString() method
This commit is contained in:
Marc Khouzam 2008-05-16 15:13:00 +00:00
parent adc7f34b97
commit 0d101034e2

View file

@ -52,7 +52,7 @@ public class ExprMetaCommand<V extends ICommandResult> implements ICommand<V> {
@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() {