testData reverted

This commit is contained in:
Dmitry Batkovich
2015-10-02 15:54:00 +03:00
parent 1154b6f096
commit fdcb182e8a
4 changed files with 4 additions and 4 deletions
@@ -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<>();
}