mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-07-14 13:00:34 +07:00
0141c99371
EA-120553 - assert: MakeMethodStaticProcessor.changeSelfUsage
13 lines
260 B
Java
13 lines
260 B
Java
import java.util.List;
|
|
import java.util.function.BiConsumer;
|
|
|
|
class IWalker {
|
|
public void w<caret>alk(I e) {
|
|
e.getChildren().forEach(this::walk);
|
|
final BiConsumer<IWalker, I> walk = IWalker::walk;
|
|
}
|
|
|
|
interface I {
|
|
List<I> getChildren();
|
|
}
|
|
} |