mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-03 08:34:22 +07:00
IDEA-359199 GitOrigin-RevId: a3162b75c3fa4ed32b3b17bcbf0753cf01fe72db
10 lines
219 B
Java
10 lines
219 B
Java
import org.slf4j.Logger;
|
|
import org.slf4j.LoggerFactory;
|
|
|
|
public class A {
|
|
private static final Logger log = LoggerFactory.getLogger(A.class);
|
|
|
|
void foo() {
|
|
for (int i = 0; i < 1; ++i) log<caret>
|
|
}
|
|
} |