Skip to content

Commit

Permalink
Eradicate static final of TRUE and FALSE lest we be tempted again
Browse files Browse the repository at this point in the history
  • Loading branch information
enebo committed Jan 16, 2015
1 parent 95ab70e commit 2bf79e0
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions core/src/main/java/org/jruby/ir/operands/Boolean.java
Expand Up @@ -6,9 +6,6 @@
public class Boolean extends ImmutableLiteral {
private final boolean truthy;

public static final Boolean TRUE = new Boolean(true);
public static final Boolean FALSE = new Boolean(false);

public Boolean(boolean truthy) {
super(OperandType.BOOLEAN);

Expand Down

0 comments on commit 2bf79e0

Please sign in to comment.