This commit is contained in:
Alexey Kudravtsev
2011-02-18 13:46:19 +03:00
parent 990a4def0d
commit 2a948f153b
@@ -453,8 +453,8 @@ public class ProjectImpl extends ComponentManagerImpl implements ProjectEx {
@Override
public String toString() {
return "Project "
+ (isDisposed() ? "(Disposed) " : "'" + getLocation()+"'")
return "Project"
+ (isDisposed() ? " (Disposed)" : isDefault() ? "" : " '" + getLocation()+"'")
+ (isDefault() ? " (Default)" : "")
+ " " + myName
;