1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-03 07:05:24 +02:00

[225388] Added a CommandHandle.toString() implementation.

This commit is contained in:
Pawel Piech 2008-04-02 17:56:05 +00:00
parent f8934d49d7
commit 6947c2f41b

View file

@ -422,6 +422,11 @@ public abstract class AbstractMIControl extends AbstractDsfService
return execCtx.getThreadId();
return null;
}
@Override
public String toString() {
return Integer.toString(fTokenId) + fCommand;
}
}
/*