Improve toString method

FEA: ItEr75S11PreventLooseChanges
This commit is contained in:
Óscar González Fernández 2011-09-24 18:39:28 +02:00
parent 87b219eaad
commit 4720094b96

View file

@ -679,7 +679,7 @@ public abstract class TaskElement extends BaseEntity {
}
public String toString() {
return getName();
return super.toString() + " :: " + getName();
}
}