mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-11 20:07:01 +07:00
14 lines
301 B
Java
14 lines
301 B
Java
import org.slf4j.Logger;
|
|
import org.slf4j.LoggerFactory;
|
|
|
|
public class A {
|
|
private static final Logger log = LoggerFactory.getLogger(A.class);
|
|
|
|
void foo() {
|
|
String x = "";
|
|
switch (x) {
|
|
case "name": log<caret>
|
|
default: throw new Throwable()
|
|
}
|
|
}
|
|
} |