// "Replace Collections.emptyList().stream() with Stream.empty()" "true" import java.util.*; import java.util.stream.Stream; class CollectionEmptyListStream { Stream stream(String[] args) { return args.length == 1 ? Collections.emptyList().stream() : Arrays.stream(args); } }