Refactory: remove unused classes, imports, fields and methods.
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / flow / SwitchFlowContext.java
index 26a050d..c8501c8 100644 (file)
@@ -28,9 +28,9 @@ public class SwitchFlowContext extends FlowContext {
                this.breakLabel = breakLabel;
        }
 
-       public Label breakLabel() {
-               return breakLabel;
-       }
+//     public Label breakLabel() {
+//             return breakLabel;
+//     }
 
        public String individualToString() {
                StringBuffer buffer = new StringBuffer("Switch flow context"); //$NON-NLS-1$
@@ -39,18 +39,18 @@ public class SwitchFlowContext extends FlowContext {
                return buffer.toString();
        }
 
-       public boolean isBreakable() {
-               return true;
-       }
-
-       public void recordBreakFrom(FlowInfo flowInfo) {
-
-               if (initsOnBreak == FlowInfo.DEAD_END) {
-                       initsOnBreak = flowInfo.copy().unconditionalInits();
-               } else {
-                       initsOnBreak = initsOnBreak.mergedWith(flowInfo
-                                       .unconditionalInits());
-               }
-               ;
-       }
+//     public boolean isBreakable() {
+//             return true;
+//     }
+
+//     public void recordBreakFrom(FlowInfo flowInfo) {
+//
+//             if (initsOnBreak == FlowInfo.DEAD_END) {
+//                     initsOnBreak = flowInfo.copy().unconditionalInits();
+//             } else {
+//                     initsOnBreak = initsOnBreak.mergedWith(flowInfo
+//                                     .unconditionalInits());
+//             }
+//             ;
+//     }
 }