Refactory: removed unnecessary local variables and imports.
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / ast / WhileStatement.java
index d7cbf11..ec7dd3e 100644 (file)
@@ -48,8 +48,8 @@ public class WhileStatement extends Statement {
                continueLabel = new Label();
 
                Constant cst = this.condition.constant;
-               boolean isConditionTrue = cst != NotAConstant
-                               && cst.booleanValue() == true;
+//             boolean isConditionTrue = cst != NotAConstant
+//                             && cst.booleanValue() == true;
                boolean isConditionFalse = cst != NotAConstant
                                && cst.booleanValue() == false;