mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-08 06:10:59 +07:00
15 lines
302 B
Java
15 lines
302 B
Java
// "Fix all 'Nullability and data flow problems' problems in file" "true"
|
|
import org.jetbrains.annotations.NotNullByDefault;
|
|
import org.jetbrains.annotations.Nullable;
|
|
|
|
@NotNullByDefault
|
|
class Main {
|
|
@Nullable String test() {
|
|
return null;
|
|
}
|
|
|
|
@Nullable String test2() {
|
|
return null;
|
|
}
|
|
}
|