mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
change signature: propagate parameters change to lambda expressions (IDEA-150138)
This commit is contained in:
+9
@@ -0,0 +1,9 @@
|
||||
interface I {
|
||||
void m<caret>(int a, int b);
|
||||
}
|
||||
|
||||
class Test {
|
||||
{
|
||||
I i = (a, b) -> {};
|
||||
}
|
||||
}
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
interface I {
|
||||
void m(int b, boolean a);
|
||||
}
|
||||
|
||||
class Test {
|
||||
{
|
||||
I i = (b, a) -> {};
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user