mr$c.java
1.04 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
43
44
45
46
47
48
49
50
51
52
import com.google.common.collect.ForwardingSet;
import com.google.common.collect.Maps;
import java.util.Collection;
import java.util.Iterator;
import java.util.Map;
import java.util.Set;
final class mr$c
extends ForwardingSet<K>
{
private mr$c(mr parammr) {}
public final void clear()
{
this.a.clear();
}
protected final Set<K> delegate()
{
return mr.a(this.a).keySet();
}
public final Iterator<K> iterator()
{
return Maps.a(this.a.entrySet().iterator());
}
public final boolean remove(Object paramObject)
{
if (!contains(paramObject)) {
return false;
}
mr.a(this.a, paramObject);
return true;
}
public final boolean removeAll(Collection<?> paramCollection)
{
return standardRemoveAll(paramCollection);
}
public final boolean retainAll(Collection<?> paramCollection)
{
return standardRetainAll(paramCollection);
}
}
/* Location: /home/merong/decompile/hackery-dex2jar.jar!/mr$c.class
* Java compiler version: 6 (50.0)
* JD-Core Version: 0.7.1
*/