mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-20 11:36:16 +07:00
10 lines
217 B
Java
10 lines
217 B
Java
// "Replace Arrays.asList().stream() with Stream.of()" "true"
|
|
|
|
import java.util.Arrays;
|
|
import java.util.stream.Stream;
|
|
|
|
class AsListIncompleteArgsStream {
|
|
Stream<String> abc() {
|
|
return Stream.of("a", , );
|
|
}
|
|
} |