mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 03:13:40 +07:00
change new type & collapse generics for java 7 (IDEA-73517)
This commit is contained in:
+1
-1
@@ -3,6 +3,6 @@ import java.util.*;
|
||||
|
||||
class RRR {
|
||||
void f() {
|
||||
List<String> l = new ArrayList<String>(<caret>);
|
||||
List<String> l = new ArrayList<>(<caret>);
|
||||
}
|
||||
}
|
||||
+1
-1
@@ -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>);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user