Skip to content

Commit

Permalink
Add @NotNull
Browse files Browse the repository at this point in the history
  • Loading branch information
Glavo committed Jan 27, 2025
1 parent a5b7a25 commit 1e8f15c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ protected HashBase(@NotNull Hasher<? super K> hasher, int initialCapacity, doubl
this.threshold = newThreshold(tableSize);
}

protected HashBase(HashBase<K, N> old) {
protected HashBase(@NotNull HashBase<K, N> old) {
this.hasher = old.hasher;
this.loadFactor = old.loadFactor;
this.threshold = old.threshold;
Expand Down

0 comments on commit 1e8f15c

Please sign in to comment.