-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Address some minor Error Prone warnings. #2842
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
return Set.of(); | ||
return Collections.emptySet(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Out of curiosity, which Error Prone bug pattern reported this? And what is the issue with Set.of()
here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Internally, at least, we prefer for people to use ImmutableSet.of(...)
instead of Set.of(...)
. The reasoning is that the spec List.of(...)
doesn't have guarantees about what the returned list is like. (Is it mutable? thread safe?) I've personally never been very convinced by that argument, but in this case it's easy enough to use Collections.emptySet()
to shut the warning up. If considerably more verbose. Of course we can't use ImmutableSet.of()
here because we don't depend on Guava.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Set.of
only works on Java 9+.
By the way, I viewed the code of OpenJDK 17:
@SafeVarargs
@SuppressWarnings("varargs")
static <E> Set<E> of(E... elements) {
switch (elements.length) { // implicit null check of elements
case 0:
@SuppressWarnings("unchecked")
var set = (Set<E>) ImmutableCollections.EMPTY_SET;
return set;
case 1:
return new ImmutableCollections.Set12<>(elements[0]);
case 2:
return new ImmutableCollections.Set12<>(elements[0], elements[1]);
default:
return new ImmutableCollections.SetN<>(elements);
}
}
And Set.of
will always return an immutable set (also thread-safe because we only read from it)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We only run tests on JDK ≥11, so the fact that this test currently uses Set.of()
is not an issue for JDK-compatibility reasons.
I'm realizing that the explanation I gave wasn't right. I was thinking of the explanation for avoiding Stream.collect(toSet())
and the like. The set returned by Set.of
is explicitly specified to be unmodifiable, which basically means immutable here. And therefore it is thread-safe too. The reason for preferring ImmutableSet.of()
is mostly that it reflects the immutability explicitly in the type. I'm not really convinced by that argument either, and it applies just as well to Collections.emptySet()
. But there is another thing that I am convinced by, and that is that Set.of().contains(null)
throws NullPointerException
. I think that is a giant wart which is a legitimate reason to avoid Set.of
and the like. Collections.emptySet()
doesn't do that.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, Collections.EMPTY_SET
and ImmutableCollections.EMPTY_SET
follow different design patterns. All immutable collections introduced from Java 9 don't allow null
elements (or K/V for maps), so I approve to use Collections.emptySet
here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(Not allowing null elements is fine. Throwing with contains(null)
is not fine. It doesn't make a difference in this test context, but it's enough to make me not want to use Set.of
despite its convenience.)
No description provided.