change new type & collapse generics for java 7 (IDEA-73517)

This commit is contained in:
anna
2011-09-01 16:04:31 +02:00
parent c646269d96
commit cd43fc0173
4 changed files with 17 additions and 2 deletions
@@ -3,6 +3,6 @@ import java.util.*;
class RRR {
void f() {
List<String> l = new ArrayList<String>(<caret>);
List<String> l = new ArrayList<>(<caret>);
}
}
@@ -3,6 +3,6 @@ import java.util.*;
class RRR {
void f() {
List<String> l = new ArrayList<String>(2<caret>);
List<String> l = new ArrayList<>(2<caret>);
}
}