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:
parent
adc7f34b97
commit
0d101034e2
1 changed files with 1 additions and 1 deletions
|
@ -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() {
|
||||
|
|
Loading…
Add table
Reference in a new issue