mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-20 11:50:57 +07:00
9 lines
195 B
Java
9 lines
195 B
Java
// "Replace with 'null'" "true-preview"
|
|
import java.util.stream.*;
|
|
|
|
class Test {
|
|
public static void method() {
|
|
Object obj = null;
|
|
Stream<Object> stream = Stream.of((Object) null);
|
|
}
|
|
} |