mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-12 13:07:01 +07:00
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>
|
|
}
|
|
} |