mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-03 06:39:33 +07:00
IDEA-345098 GitOrigin-RevId: 5176d6bb359fc804b857951225cc0a3f2afecfa6
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
|
|
}
|
|
} |