qg.java
752 Bytes
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
import com.google.common.annotations.GwtCompatible;
import com.google.common.base.Preconditions;
import java.util.Iterator;
@GwtCompatible
public abstract class qg<F, T>
implements Iterator<T>
{
final Iterator<? extends F> c;
protected qg(Iterator<? extends F> paramIterator)
{
this.c = ((Iterator)Preconditions.checkNotNull(paramIterator));
}
public abstract T a(F paramF);
public final boolean hasNext()
{
return this.c.hasNext();
}
public final T next()
{
return (T)a(this.c.next());
}
public final void remove()
{
this.c.remove();
}
}
/* Location: /home/merong/decompile/hackery-dex2jar.jar!/qg.class
* Java compiler version: 6 (50.0)
* JD-Core Version: 0.7.1
*/