Simpler use of ConstOperator

git-svn-id: https://svn.code.sf.net/p/jode/code/trunk@461 379699f6-c40d-0410-875b-85095c16579e
stable
jochen 26 years ago
parent 01d4915520
commit 45bee37c0c
  1. 4
      jode/jode/flow/LoopBlock.java

@ -37,9 +37,9 @@ public class LoopBlock extends StructuredBlock implements BreakableBlock {
public static final int POSSFOR = 3;
public static final Expression TRUE =
new ConstOperator(Type.tBoolean, "1");
new ConstOperator(Boolean.TRUE);
public static final Expression FALSE =
new ConstOperator(Type.tBoolean, "0");
new ConstOperator(Boolean.FALSE);
/**
* The condition. Must be of boolean type.

Loading…
Cancel
Save