(Collection<String> input)
| 696 | private Map<String, ImmutableMultiset<String>> parametersAsMap() { |
| 697 | return Maps.transformValues(parameters.asMap(), new Function<Collection<String>, ImmutableMultiset<String>>() { |
| 698 | @Override |
| 699 | public ImmutableMultiset<String> apply(Collection<String> input) { |
| 700 | return ImmutableMultiset.copyOf(input); |
| 701 | } |
| 702 | }); |
| 703 | } |
| 704 |
nothing calls this directly
no test coverage detected