Skip to content

Commit

Permalink
Merge pull request #1382 from ibrahim-5/patch-1
Browse files Browse the repository at this point in the history
fix : rename parameter
  • Loading branch information
donraab committed Aug 25, 2022
2 parents 5dd90aa + 6768b50 commit 848d09c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,9 @@ private Sets()
/**
* @since 9.0.
*/
public static <T> MutableSet<T> adapt(Set<T> list)
public static <T> MutableSet<T> adapt(Set<T> set)
{
return SetAdapter.adapt(list);
return SetAdapter.adapt(set);
}

public static <E> MutableSet<E> union(
Expand Down

0 comments on commit 848d09c

Please sign in to comment.