Mutable fields should not be "public static" (squid:S2386) using List.of()

We’re using SonarQube Community EditionVersion 7.5 (build 20543) and squid:S2386 fires a lot when using java.util.List of(). But using java.util.Collections unmodifiableList() the error disappears.
In the documentation both methods return an immutable list, so the error in the of() should not occur.
Example:
public static final List<String> WITH_ERROR = List.of("foo", "bar");

public static final List<String> WITHOUT_ERROR = Collections.unmodifiableList(List.of("foo", "bar"));

It would be great if S2386 could be updated to accept List.of().

hello @JanioSamuel,

thanks for reporting this issue, I created the ticket to handle it https://jira.sonarsource.com/browse/SONARJAVA-3086

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.