qf$b.java
2.54 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
import com.google.common.collect.Collections2;
import com.google.common.collect.ForwardingIterator;
import com.google.common.collect.ForwardingMapEntry;
import com.google.common.collect.Iterators;
import com.google.common.collect.Maps;
import com.google.common.collect.ObjectArrays;
import com.google.common.collect.Sets;
import java.util.Collection;
import java.util.Iterator;
import java.util.Map.Entry;
import java.util.Set;
import javax.annotation.Nullable;
final class qf$b<K, V>
extends qf.r<Map.Entry<K, Collection<V>>>
{
private static final long serialVersionUID = 0L;
qf$b(Set<Map.Entry<K, Collection<V>>> paramSet, @Nullable Object paramObject)
{
super(paramSet, paramObject);
}
public final boolean contains(Object paramObject)
{
synchronized (this.h)
{
boolean bool = Maps.a(d(), paramObject);
return bool;
}
}
public final boolean containsAll(Collection<?> paramCollection)
{
synchronized (this.h)
{
boolean bool = Collections2.a(d(), paramCollection);
return bool;
}
}
public final boolean equals(Object paramObject)
{
if (paramObject == this) {
return true;
}
synchronized (this.h)
{
boolean bool = Sets.a(d(), paramObject);
return bool;
}
}
public final Iterator<Map.Entry<K, Collection<V>>> iterator()
{
new ForwardingIterator()
{
protected final Iterator<Map.Entry<K, Collection<V>>> delegate()
{
return this.a;
}
};
}
public final boolean remove(Object paramObject)
{
synchronized (this.h)
{
boolean bool = Maps.b(d(), paramObject);
return bool;
}
}
public final boolean removeAll(Collection<?> paramCollection)
{
synchronized (this.h)
{
boolean bool = Iterators.removeAll(d().iterator(), paramCollection);
return bool;
}
}
public final boolean retainAll(Collection<?> paramCollection)
{
synchronized (this.h)
{
boolean bool = Iterators.retainAll(d().iterator(), paramCollection);
return bool;
}
}
public final Object[] toArray()
{
synchronized (this.h)
{
Object[] arrayOfObject = ObjectArrays.a(d());
return arrayOfObject;
}
}
public final <T> T[] toArray(T[] paramArrayOfT)
{
synchronized (this.h)
{
paramArrayOfT = ObjectArrays.a(d(), paramArrayOfT);
return paramArrayOfT;
}
}
}
/* Location: /home/merong/decompile/hackery-dex2jar.jar!/qf$b.class
* Java compiler version: 6 (50.0)
* JD-Core Version: 0.7.1
*/