Skip to content

Commit 2b771b2

Browse files
committed
Minor Change
1 parent 197893e commit 2b771b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

liquidjava-verifier/src/main/java/liquidjava/utils/VariableFormatter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,6 @@ private static String toSuperscript(String number) {
4848
}
4949

5050
private static boolean isSpecialIdentifier(String id) {
51-
return "fresh".equals(id) || "ret".equals(id);
51+
return id.equals("fresh") || id.equals("ret");
5252
}
5353
}

0 commit comments

Comments
 (0)