- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
41 lines
1.1 KiB
Java
41 lines
1.1 KiB
Java
package com.google.android.gms.internal.ads;
|
|
|
|
import java.util.ListIterator;
|
|
|
|
/* loaded from: classes3.dex */
|
|
abstract class zzfzs extends zzfzr implements ListIterator {
|
|
public zzfzs(ListIterator listIterator) {
|
|
super(listIterator);
|
|
}
|
|
|
|
@Override // java.util.ListIterator
|
|
public final void add(Object obj) {
|
|
throw new UnsupportedOperationException();
|
|
}
|
|
|
|
@Override // java.util.ListIterator
|
|
public final boolean hasPrevious() {
|
|
return ((ListIterator) this.zzb).hasPrevious();
|
|
}
|
|
|
|
@Override // java.util.ListIterator
|
|
public final int nextIndex() {
|
|
return ((ListIterator) this.zzb).nextIndex();
|
|
}
|
|
|
|
@Override // java.util.ListIterator
|
|
public final Object previous() {
|
|
return zza(((ListIterator) this.zzb).previous());
|
|
}
|
|
|
|
@Override // java.util.ListIterator
|
|
public final int previousIndex() {
|
|
return ((ListIterator) this.zzb).previousIndex();
|
|
}
|
|
|
|
@Override // java.util.ListIterator
|
|
public final void set(Object obj) {
|
|
throw new UnsupportedOperationException();
|
|
}
|
|
}
|