Skip to content

Commit

Permalink
fix : rename parameter - closes #1380
Browse files Browse the repository at this point in the history
rename the 'list' parameter in org.eclipse.collections.impl.factory.Sets.adapt to 'set'
  • Loading branch information
ibrahim-5 committed Aug 24, 2022
1 parent 5dd90aa commit 6768b50
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 6768b50

Please sign in to comment.