diff --git a/resources/bytecode/javFiles/PatternMatchingListAppend.jav b/resources/bytecode/javFiles/PatternMatchingListAppend.jav index dfbf3918..3fa186db 100644 --- a/resources/bytecode/javFiles/PatternMatchingListAppend.jav +++ b/resources/bytecode/javFiles/PatternMatchingListAppend.jav @@ -4,7 +4,7 @@ import java.lang.Object; sealed interface List permits Cons, Empty {} public record Cons(T a, List l) implements List {} -public record Empty() implements List {} +public record Empty() implements List {} public class PatternMatchingListAppend {