Skip to content

Commit

Permalink
remove unused
Browse files Browse the repository at this point in the history
  • Loading branch information
idegtiarenko committed Dec 4, 2024
1 parent 1979ba4 commit f10d8d5
Showing 1 changed file with 0 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,13 +69,6 @@ public static <T> List<T> combine(Collection<? extends T> left, T... entries) {
return list;
}

public static int mapSize(int size) {
if (size < 2) {
return size + 1;
}
return (int) (size / 0.75f + 1f);
}

@SafeVarargs
@SuppressWarnings("varargs")
public static <T> List<T> nullSafeList(T... entries) {
Expand Down

0 comments on commit f10d8d5

Please sign in to comment.