Created
February 5, 2014 06:17
-
-
Save dain/8818242 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
checkNotNull(outputs, "outputs is null"); | |
this.outputs = ImmutableMap.copyOf(Maps.transformValues(outputs, new Function<Set<?>, Set<?>>() { | |
@Override | |
public Set<?> apply(@Nullable Set<?> input) | |
{ | |
return ImmutableSet.copyOf(input); | |
} | |
})); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment