mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-25 14:25:04 +07:00
change signature: propagate parameters change to lambda expressions (IDEA-150138)
This commit is contained in:
+11
@@ -0,0 +1,11 @@
|
||||
interface SAM {
|
||||
void foo(boolean b);
|
||||
}
|
||||
|
||||
class Test {
|
||||
{
|
||||
bar((boolean b) -> {});
|
||||
}
|
||||
|
||||
void bar(SAM sam){}
|
||||
}
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
interface SAM {
|
||||
void foo(boolean b);
|
||||
}
|
||||
|
||||
class Test {
|
||||
{
|
||||
SAM sam = (boolean b) -> {};
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user