You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Delete the newArrayList(Collection) method and its accompanying JavaDoc from ListUtils. The removed method was a thin wrapper around new ArrayList<>(collection); eliminating it reduces redundant API surface. Callers can use new ArrayList<>(collection) or other existing utility overloads instead.
0 commit comments