Skip to content

Commit

Permalink
Suppress warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
Glavo committed Jan 15, 2025
1 parent 556aecc commit 254462b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions kala-collection/src/main/java/kala/collection/SetLike.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,14 @@ default Predicate<E> asPredicate() {

@NotNull SetLike<E> added(E value);

@SuppressWarnings("unchecked")
@NotNull SetLike<E> addedAll(E... values);

@NotNull SetLike<E> addedAll(@NotNull Iterable<? extends E> values);

@NotNull SetLike<E> removed(E value);

@SuppressWarnings("unchecked")
@NotNull SetLike<E> removedAll(E... values);

@NotNull SetLike<E> removedAll(@NotNull Iterable<? extends E> values);
Expand Down

0 comments on commit 254462b

Please sign in to comment.