提交 c5f1ff5e 编写于 作者: A alanb

7025468: Tests using diamond with anonymous inner classes needs to be reverted

Reviewed-by: dholmes, forax
上级 98cb588a
......@@ -69,7 +69,7 @@ public class Basic {
throw new RuntimeException("entry not found");
// check filtering: f* should match foo
DirectoryStream.Filter<Path> filter = new DirectoryStream.Filter<>() {
DirectoryStream.Filter<Path> filter = new DirectoryStream.Filter<Path>() {
private PathMatcher matcher =
dir.getFileSystem().getPathMatcher("glob:f*");
public boolean accept(Path file) {
......
......@@ -53,7 +53,7 @@ import java.util.concurrent.PriorityBlockingQueue;
public class NoNulls {
void test(String[] args) throws Throwable {
final Comparator<String> nullTolerantComparator
= new Comparator<>() {
= new Comparator<String>() {
public int compare(String x, String y) {
return (x == null ? -1 :
y == null ? 1 :
......@@ -65,7 +65,7 @@ public class NoNulls {
nullSortedSet.add(null);
final PriorityQueue<String> nullPriorityQueue
= new PriorityQueue<>() {
= new PriorityQueue<String>() {
public Object[] toArray() { return new Object[] { null };}};
final Collection<String> nullCollection = new ArrayList<>();
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册