Skip to content

Commit

Permalink
Make ConvertedSet() constructor public.
Browse files Browse the repository at this point in the history
  • Loading branch information
archiecobbs committed Jan 11, 2019
1 parent 01dffd6 commit 7d31332
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -31,7 +31,7 @@ public class ConvertedSet<E, W> extends AbstractIterationSet<E> {
* @param converter element converter
* @throws IllegalArgumentException if any parameter is null
*/
ConvertedSet(Set<W> set, Converter<E, W> converter) {
public ConvertedSet(Set<W> set, Converter<E, W> converter) {
Preconditions.checkArgument(set != null, "null set");
Preconditions.checkArgument(converter != null, "null converter");
this.set = set;
Expand Down

0 comments on commit 7d31332

Please sign in to comment.