export fix

This commit is contained in:
honfika@gmail.com
2015-07-11 19:20:43 +02:00
parent 8f8db771e8
commit fa6b85416f
5 changed files with 14 additions and 10 deletions

View File

@@ -161,6 +161,10 @@ public abstract class GraphTargetItem implements Serializable, Cloneable {
}
public GraphTextWriter toStringSemicoloned(GraphTextWriter writer, LocalData localData) throws InterruptedException {
if (Thread.currentThread().isInterrupted()) {
throw new InterruptedException();
}
writer.startOffset(src, getPos(), srcData);
appendTo(writer, localData);
if (needsSemicolon()) {