Fix tabbing.... Please fix your editors so they do tabbing correctly!!! (Spaces...
[IRC.git] / Robust / src / Analysis / Scheduling / ObjectSimulator.java
index 100b85389d86ca8b49107ee13feb7ab19014094f..69421a4fe82b1abf5e67f5e47f5ec6e9a5bcacab 100644 (file)
@@ -6,7 +6,7 @@ import IR.ClassDescriptor;
 
 public class ObjectSimulator {
   static int objid = 0;
-  
+
   int oid;
   ClassDescriptor cd;
   FlagState currentFS;
@@ -14,12 +14,12 @@ public class ObjectSimulator {
   boolean shared;
   boolean hold;
   int version;
-  
+
   // TODO, crack for KMeans
   int counter;
 
-  public ObjectSimulator(ClassDescriptor cd, 
-                        FlagState currentFS) {
+  public ObjectSimulator(ClassDescriptor cd,
+                         FlagState currentFS) {
     super();
     this.oid = ObjectSimulator.objid++;
     this.cd = cd;
@@ -40,12 +40,12 @@ public class ObjectSimulator {
       this.changed = true;
       currentFS = (FlagState)fedge.getTarget();
       if(this.counter > 0) {
-        //System.err.println(this.counter);
-        this.counter--;
+       //System.err.println(this.counter);
+       this.counter--;
       }
       if((this.cd.getSymbol().equals("Cluster")) && (this.counter == 0)) {
-        // go to end state
-        this.currentFS = new FlagState(this.cd);
+       // go to end state
+       this.currentFS = new FlagState(this.cd);
       }
     } else {
       this.changed = false;