[java] raises language level to Java 9

This commit is contained in:
Roman Shevchenko
2017-03-24 18:35:57 +01:00
parent 9c35556803
commit 5e5c14c57e
5 changed files with 6 additions and 6 deletions
@@ -1,4 +1,4 @@
import java.util.*;
public class Test {
List<Integer> f = new ArrayList<Integer>(){};
List<Integer> f = new ArrayList<>(){};
}