Skip to content

Commit

Permalink
minor refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
esaulpaugh committed Aug 19, 2024
1 parent 25c985b commit c107e09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/esaulpaugh/headlong/abi/TypeEnum.java
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,6 @@ public static TypeEnum parse(String typeString) {
}

static IllegalArgumentException unexpectedType(String t) {
return new IllegalArgumentException("unexpected type: " + (t == null ? null : "\"" + t + '"'));
return new IllegalArgumentException("unexpected type: " + (t == null ? null : '"' + t + '"'));
}
}

0 comments on commit c107e09

Please sign in to comment.