Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public String getTag() {
public boolean asBoolean() {
final Boolean result = BOOLEAN_VALUES.get(value.toLowerCase());
if (result == null) {
throw new RuntimeException(String.format("Unrecognized boolean value: %s", result));
throw new RuntimeException(String.format("Unrecognized boolean value: %s", value));
}
return result;
}
Expand Down