Skip to content

Commit

Permalink
Fix wrong bundle
Browse files Browse the repository at this point in the history
  • Loading branch information
danielb987 committed Jan 4, 2019
1 parent 6d6adf2 commit dc0dd15
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions java/src/jmri/Conditional.java
Expand Up @@ -90,9 +90,9 @@ public String toString() {
public static final int TRUE = 0x04;

public enum AntecedentOperator {
ALL_AND(Conditional.ALL_AND, rbx.getString("LogicAND")),
ALL_OR(Conditional.ALL_OR, rbx.getString("LogicOR")),
MIXED(Conditional.MIXED, rbx.getString("LogicMixed"));
ALL_AND(Conditional.ALL_AND, Bundle.getMessage("LogicAND")),
ALL_OR(Conditional.ALL_OR, Bundle.getMessage("LogicOR")),
MIXED(Conditional.MIXED, Bundle.getMessage("LogicMixed"));

private final int _value;
private final String _string;
Expand Down

0 comments on commit dc0dd15

Please sign in to comment.