mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-04 12:03:57 +07:00
GitOrigin-RevId: acf0c175cda663c43d5feb5b503ed462c5acf92d
10 lines
242 B
Java
10 lines
242 B
Java
// "Insert '(NodeInfo)parent' declaration" "true-preview"
|
|
public abstract class A {
|
|
public void getNodeElements(Object parent) {
|
|
if (!(parent instanceof <caret>NodeInfo)) return;
|
|
}
|
|
|
|
private static class NodeInfo {
|
|
}
|
|
}
|