mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 08:50:57 +07:00
Fixes IDEA-350503 Type annotations in JavaDoc are shown in wrong order for multi-dimensional array Fixes IDEA-300381 Inferred @NotNull Annotation on Array / VarArg method parameter incorrectly annotates the array elements and not the argument. GitOrigin-RevId: 4a5919df70c3bac9b19fb7019365636b9a56273a
7 lines
116 B
Java
7 lines
116 B
Java
class Test {
|
|
void test(String[] data) {
|
|
for (String item : data) {
|
|
System.out.println(item);
|
|
}
|
|
}
|
|
} |