mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 18:50:59 +07:00
Fixes IDEA-354502 Infer nullity / DFA: method return type nullability not inferred with returned new array without initializer GitOrigin-RevId: f53afe22ebae40cb8326e6f83e29ccc93d93cbea
9 lines
174 B
Java
9 lines
174 B
Java
public class J {
|
|
public String[] createArrayFailure(int size) {
|
|
return new String[size];
|
|
}
|
|
|
|
public String[] createArraySuccess() {
|
|
return new String[] {};
|
|
}
|
|
} |