Skip to content

Commit

Permalink
remove exception
Browse files Browse the repository at this point in the history
  • Loading branch information
odneill committed Jul 16, 2024
1 parent dc8f051 commit f4a9dbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/jabref/logic/layout/LayoutHelper.java
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ private boolean validAnnotation(int c) throws IOException {
return annotation;
}

private boolean validChar(int c) throws IOException {
private boolean validChar(int c) {
boolean character = Character.isLetter((char) c) || (c == '_');

return character;
Expand Down

0 comments on commit f4a9dbc

Please sign in to comment.