Skip to content

Commit

Permalink
Use |=
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Jan 15, 2024
1 parent 64c502b commit 9f0425a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public Object convert(Object value) {
new StringTokenizer(value.toString(), ", \t|", false);
while (stok.hasMoreTokens()) {
String tok = stok.nextToken();
result = result | recognizeOption(tok);
result |= recognizeOption(tok);
}
return new Integer(result);
}
Expand Down

0 comments on commit 9f0425a

Please sign in to comment.