mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 04:50:58 +07:00
9 lines
192 B
Java
9 lines
192 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(<caret>obj);
|
|
}
|
|
} |