Skip to content

Commit 136f8db

Browse files
committed
Fixed static keyword
1 parent 0ac568e commit 136f8db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

liquidjava-example/src/main/java/testSuite/ErrorChars.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import liquidjava.specification.Refinement;
44

55
public class ErrorChars {
6-
void printLetter(@Refinement("_ >= 65 && _ <= 90 || _ >= 97 && _ <= 122") char c) {
6+
static void printLetter(@Refinement("_ >= 65 && _ <= 90 || _ >= 97 && _ <= 122") char c) {
77
System.out.println(c);
88
}
99

0 commit comments

Comments
 (0)