mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 10:51:06 +07:00
14 lines
179 B
Java
14 lines
179 B
Java
// "Replace with lambda" "true"
|
|
class Test2 {
|
|
|
|
void f(Runnable... rs){}
|
|
{
|
|
f(null, new Run<caret>nable() {
|
|
@Override
|
|
public void run() {
|
|
|
|
}
|
|
});
|
|
}
|
|
}
|