X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/ast/WhileStatement.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/ast/WhileStatement.java index d7cbf11..ec7dd3e 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/ast/WhileStatement.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/ast/WhileStatement.java @@ -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;