mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 23:39:39 +07:00
12 lines
209 B
Java
12 lines
209 B
Java
import org.slf4j.Logger;
|
|
import org.slf4j.LoggerFactory;
|
|
|
|
public class A {
|
|
|
|
private static final Logger log = LoggerFactory.getLogger(A.class);
|
|
|
|
void foo() {
|
|
int log = 10;
|
|
A.log
|
|
}
|
|
} |