mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 23:39:39 +07:00
Fixes IDEA-316248 Inspection "Method invocation ‘println’ will produce ‘NullPointerException’" on System.err GitOrigin-RevId: 0d257c09bff9712299bc749288703d057dfa3fdb
12 lines
169 B
Java
12 lines
169 B
Java
// IDEA-316248
|
|
package java.lang;
|
|
|
|
import java.io.PrintStream;
|
|
|
|
class System {
|
|
public static final PrintStream out = null;
|
|
|
|
void test() {
|
|
out.println(1);
|
|
}
|
|
} |