mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
testData reverted
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
import java.util.*;
|
||||
public class Test {
|
||||
Map<String, Integer> f = new HashMap<String, Integer>();
|
||||
Map<String, Integer> f = new HashMap<>();
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -2,6 +2,6 @@ import java.util.*;
|
||||
class Test {
|
||||
List<Integer> l;
|
||||
void foo() {
|
||||
l = new ArrayList<Integer>();
|
||||
l = new ArrayList<>();
|
||||
}
|
||||
}
|
||||
@@ -1,4 +1,4 @@
|
||||
import java.util.*;
|
||||
class Test {
|
||||
Set<? extends Integer> f = new Set<Integer>();
|
||||
Set<? extends Integer> f = new Set<>();
|
||||
}
|
||||
@@ -1,6 +1,6 @@
|
||||
import java.util.*;
|
||||
public class Test {
|
||||
Set<List<int[]>> f = new Set<List<int[]>>();
|
||||
Set<List<int[]>> f = new Set<>();
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user