Method
FilteredEntryMap
(Map<K, V> unfiltered, Predicate<? super Entry<K, V>> entryPredicate)
Source from the content-addressed store, hash-verified
| 2840 | final Set<Entry<K, V>> filteredEntrySet; |
| 2841 | |
| 2842 | FilteredEntryMap(Map<K, V> unfiltered, Predicate<? super Entry<K, V>> entryPredicate) { |
| 2843 | super(unfiltered, entryPredicate); |
| 2844 | filteredEntrySet = Sets.filter(unfiltered.entrySet(), predicate); |
| 2845 | } |
| 2846 | |
| 2847 | @Override |
| 2848 | protected Set<Entry<K, V>> createEntrySet() { |
Callers
nothing calls this directly
Tested by
no test coverage detected