mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-25 18:25:37 +07:00
9 lines
182 B
Java
9 lines
182 B
Java
import java.util.List;
|
|
|
|
class Test {
|
|
void test(String type) {
|
|
if(type != null && (type.equals("foo") | type.equals("bar"))) {
|
|
System.out.println("Who knows");
|
|
}
|
|
}
|
|
} |