Fix tabbing.... Please fix your editors so they do tabbing correctly!!! (Spaces...
[IRC.git] / Robust / src / IR / Tree / SwitchStatementNode.java
index c4c2e7ea2c89e30f26d386d2cd06bdd939353b27..f5be2485aad533982d8a7665672393ff189bcbd6 100644 (file)
@@ -12,7 +12,7 @@ public class SwitchStatementNode extends BlockStatementNode {
   public ExpressionNode getCondition() {
     return cond;
   }
-  
+
   public BlockNode getSwitchBody() {
     return this.switch_st;
   }
@@ -20,7 +20,7 @@ public class SwitchStatementNode extends BlockStatementNode {
   public String printNode(int indent) {
     return "switch(" + cond.printNode(indent) + ") " + switch_st.printNode(indent);
   }
-  
+
   public int kind() {
     return Kind.SwitchStatementNode;
   }