og.java
1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import com.google.common.annotations.GwtCompatible;
import com.google.common.base.Predicate;
import com.google.common.collect.ListMultimap;
import java.util.List;
import javax.annotation.Nullable;
@GwtCompatible
public final class og<K, V>
extends oh<K, V>
implements ListMultimap<K, V>
{
public og(ListMultimap<K, V> paramListMultimap, Predicate<? super K> paramPredicate)
{
super(paramListMultimap, paramPredicate);
}
public final ListMultimap<K, V> c()
{
return (ListMultimap)super.a();
}
public final List<V> get(K paramK)
{
return (List)super.get(paramK);
}
public final List<V> removeAll(@Nullable Object paramObject)
{
return (List)super.removeAll(paramObject);
}
public final List<V> replaceValues(K paramK, Iterable<? extends V> paramIterable)
{
return (List)super.replaceValues(paramK, paramIterable);
}
}
/* Location: /home/merong/decompile/hackery-dex2jar.jar!/og.class
* Java compiler version: 6 (50.0)
* JD-Core Version: 0.7.1
*/