mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-26 19:06:24 +07:00
extract method: include method prams when extracting from lambda body (IDEA-142163)
This commit is contained in:
+9
@@ -0,0 +1,9 @@
|
||||
class Test {
|
||||
void foo(Object o) {
|
||||
try {
|
||||
Runnable r = () -> {
|
||||
<selection>System.out.println(o);</selection>
|
||||
};
|
||||
} catch (Throwable e) {}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user