1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

toString() added

This commit is contained in:
Andrew Gvozdev 2009-09-12 15:20:15 +00:00
parent 198d23ed16
commit 0499bcb428

View file

@ -1819,4 +1819,14 @@ public class InputType extends BuildObject implements IInputType {
//TODO:
return false;
}
/**
* The intention is cosmetic - to make debugging easier.
*
* @see org.eclipse.cdt.managedbuilder.internal.core.BuildObject#toString()
*/
@Override
public String toString() {
return getId();
}
}