mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +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
5 lines
116 B
Java
5 lines
116 B
Java
class Test {
|
|
final String[] test() {
|
|
return Math.random() > 0.5 ? new String[] { "1", "2", "3" } : null;
|
|
}
|
|
} |