fix typo in Instruction.Abort.toString()
authormegacz <adam@megacz.com>
Thu, 8 Jan 2009 09:40:17 +0000 (01:40 -0800)
committermegacz <adam@megacz.com>
Thu, 8 Jan 2009 09:40:17 +0000 (01:40 -0800)
src/edu/berkeley/fleet/api/Instruction.java

index 13a266b..cebce45 100644 (file)
@@ -334,7 +334,7 @@ public abstract class Instruction {
     /** a flush instruction */
     public static class Abort extends Instruction {
         public Abort(Dock dock, Predicate predicate) { super(dock, false, predicate); }
-        public String toString() { return super.toString()+"abort"; }
+        public String toString() { return super.toString()+"abort;"; }
     }
 
     /** marks the start of a loop; closes the hatch */