mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-15 02:51:23 +07:00
15 lines
297 B
Java
15 lines
297 B
Java
// "Fix all 'Nullability and data flow problems' problems in file" "true"
|
|
import org.jetbrains.annotations.NotNull;
|
|
import org.jetbrains.annotations.NotNullByDefault;
|
|
|
|
@NotNullByDefault
|
|
class Main {
|
|
String test() {
|
|
return n<caret>ull;
|
|
}
|
|
|
|
@NotNull String test2() {
|
|
return null;
|
|
}
|
|
}
|