mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-04 21:09:47 +07:00
IDEA-359199 GitOrigin-RevId: a3162b75c3fa4ed32b3b17bcbf0753cf01fe72db
11 lines
238 B
Java
11 lines
238 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 a[] = new int[10];
|
|
for (int b : a) log<caret>
|
|
}
|
|
} |