Files
openide/java/java-tests/testData/inspection/java9CollectionFactory/beforeHashSetDoubleBraceWrongSet.java
Bas Leijdekkers 54975a31ba Improve inspection problem descriptor
GitOrigin-RevId: 8abf2188d180865951921d5ebfd9bd7bd33bfc6b
2021-03-18 08:40:12 +00:00

15 lines
370 B
Java

// "Replace with 'Set.of()' call" "false"
import java.util.Collections;
import java.util.HashSet;
import java.util.Set;
public class Test {
static Set<String> WRONG_SET = new HashSet<>();
public static final Set<String> MY_SET = Collections.unmod<caret>ifiableSet(new HashSet<String>() {{
add("a");
add("b");
WRONG_SET.add("c".toUpperCase());
}});
}