mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-01 19:02:04 +07:00
IDEA-331693 GitOrigin-RevId: 2ca3503bfbf7d37602ad698f071292a8773c6e29
13 lines
250 B
Java
13 lines
250 B
Java
import org.apache.log4j.Logger;
|
|
|
|
class A {
|
|
private static final Logger log<caret> = Logger.getLogger(A.class);
|
|
|
|
public void foo() {
|
|
new Runnable() {
|
|
@Override
|
|
public void run() {
|
|
}
|
|
}
|
|
}
|
|
} |