Skip to content

Commit

Permalink
Delete unused method
Browse files Browse the repository at this point in the history
  • Loading branch information
casid committed Feb 10, 2024
1 parent 1daa14b commit 64553f6
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions jte/src/main/java/gg/jte/compiler/TemplateParser.java
Original file line number Diff line number Diff line change
Expand Up @@ -376,14 +376,6 @@ private int countBefore(char c) {
return count;
}

@SuppressWarnings("SameParameterValue")
private char previousChar(int offset) {
if (i - offset < 0) {
return 0;
}
return templateCode.charAt(i - offset);
}

private char nextChar() {
if (i + 1 >= templateCode.length()) {
return 0;
Expand Down

0 comments on commit 64553f6

Please sign in to comment.