1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 14:42:11 +02:00

Added a warning to toString method.

This commit is contained in:
Sergey Prigogin 2014-08-25 11:04:06 -07:00
parent e23f4ef14b
commit b18a544841

View file

@ -216,6 +216,9 @@ public class Value implements IValue {
return CharArrayUtils.equals(getSignature(), rhs.getSignature());
}
/**
* For debugging only.
*/
@Override
public String toString() {
return new String(getSignature());