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

Added toString method.

This commit is contained in:
Sergey Prigogin 2014-08-19 16:29:30 -07:00
parent 5e4ab381c6
commit 344cd17bc9

View file

@ -118,4 +118,12 @@ public class CPPNamespaceAlias extends PlatformObject implements ICPPNamespaceAl
public boolean isInline() {
return false;
}
/**
* For debugging use only.
*/
@Override
public String toString() {
return getName();
}
}