#1047 6.0.2 open all scripts folders: fix

This commit is contained in:
honfika@gmail.com
2015-09-13 08:31:41 +02:00
parent cf5cc27349
commit 3958217d93
2 changed files with 7 additions and 3 deletions

View File

@@ -181,7 +181,7 @@ public abstract class GraphTargetItem implements Serializable, Cloneable {
@Override
public String toString() {
return this.getClass().getName();
return getClass().getName();
}
public GraphTextWriter toString(GraphTextWriter writer, LocalData localData) throws InterruptedException {
@@ -230,6 +230,7 @@ public abstract class GraphTargetItem implements Serializable, Cloneable {
}
public String toStringNoQuotes(LocalData localData) {
// todo: honfika: this method should not be called, maybe we should throw an exception
return toString();
}