mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
[tests] prepares Java tests for the language level raise
This commit is contained in:
+2
-2
@@ -1,7 +1,7 @@
|
||||
import java.util.*;
|
||||
class TestData<K> {}
|
||||
interface TerminalOp<L, M> extends IntermediateOp<L, M> {}
|
||||
interface IntermediateOp<L1, M1> { boolean _(L1 l, M1 m);}
|
||||
interface IntermediateOp<L1, M1> { boolean m(L1 l, M1 m);}
|
||||
|
||||
|
||||
class Test1 {
|
||||
@@ -52,7 +52,7 @@ class Test4 {
|
||||
|
||||
}
|
||||
public interface BiPredicate1<T, U> extends IntermediateOp1<T, U>{
|
||||
boolean _(T t, U u);
|
||||
boolean m(T t, U u);
|
||||
}
|
||||
|
||||
public interface TerminalOp1<T, U> extends IntermediateOp1<T, U> {}
|
||||
|
||||
Reference in New Issue
Block a user