Skip to content

Commit 197893e

Browse files
committed
Fix
1 parent 2b2a3d8 commit 197893e

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 id == "fresh" || id == "ret";
51+
return "fresh".equals(id) || "ret".equals(id);
5252
}
5353
}

0 commit comments

Comments
 (0)