qe$c.java
1.16 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
import com.google.common.base.Supplier;
import com.google.common.collect.AbstractIterator;
import com.google.common.collect.Iterators;
import java.util.Collection;
import java.util.Iterator;
import java.util.Map;
import java.util.Map.Entry;
import java.util.Set;
final class qe$c
extends AbstractIterator<C>
{
final Map<C, V> a = (Map)this.d.b.get();
final Iterator<Map<C, V>> b = this.d.a.values().iterator();
Iterator<Map.Entry<C, V>> c = Iterators.emptyIterator();
private qe$c(qe paramqe) {}
protected final C computeNext()
{
for (;;)
{
if (this.c.hasNext())
{
Map.Entry localEntry = (Map.Entry)this.c.next();
if (!this.a.containsKey(localEntry.getKey()))
{
this.a.put(localEntry.getKey(), localEntry.getValue());
return (C)localEntry.getKey();
}
}
else
{
if (!this.b.hasNext()) {
break;
}
this.c = ((Map)this.b.next()).entrySet().iterator();
}
}
return (C)endOfData();
}
}
/* Location: /home/merong/decompile/hackery-dex2jar.jar!/qe$c.class
* Java compiler version: 6 (50.0)
* JD-Core Version: 0.7.1
*/