mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 15:27:45 +07:00
lambda completion: reformat, ensure unique names (IDEA-128567)
This commit is contained in:
+10
@@ -0,0 +1,10 @@
|
||||
interface I<T> {
|
||||
void m(T t, String s);
|
||||
}
|
||||
|
||||
class Test {
|
||||
public static void main(String[] args) {
|
||||
String s = "";
|
||||
I<String> i = (s1, s2) -> <caret>
|
||||
}
|
||||
}
|
||||
+10
@@ -0,0 +1,10 @@
|
||||
interface I<T> {
|
||||
void m(T t, String s);
|
||||
}
|
||||
|
||||
class Test {
|
||||
public static void main(String[] args) {
|
||||
String s = "";
|
||||
I<String> i = <caret>
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user