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