mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-03 18:48:28 +07:00
IDEA-359199 GitOrigin-RevId: a3162b75c3fa4ed32b3b17bcbf0753cf01fe72db
10 lines
204 B
Java
10 lines
204 B
Java
import org.slf4j.Logger;
|
|
import org.slf4j.LoggerFactory;
|
|
|
|
public class A {
|
|
private static final Logger log = LoggerFactory.getLogger(A.class);
|
|
|
|
void foo() {
|
|
while (true) log<caret>
|
|
}
|
|
} |