Fix tabbing.... Please fix your editors so they do tabbing correctly!!! (Spaces...
[IRC.git] / Robust / src / IR / Tree / SwitchBlockNode.java
index d14479c99578341e3447a71456d4cc13fe69c30f..ad2160786d6ad806505c2235d42a59795fb082e0 100644 (file)
@@ -14,7 +14,7 @@ public class SwitchBlockNode extends BlockStatementNode {
   public Vector<SwitchLabelNode> getSwitchConditions() {
     return this.switch_conds;
   }
-  
+
   public BlockNode getSwitchBlockStatement() {
     return this.switch_st;
   }
@@ -27,7 +27,7 @@ public class SwitchBlockNode extends BlockStatementNode {
     result += this.switch_st.printNode(indent);
     return result;
   }
-  
+
   public int kind() {
     return Kind.SwitchBlockNode;
   }