mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2025-01-09 13:43:22 +00:00
13 lines
344 B
Java
13 lines
344 B
Java
package com.google.common.collect;
|
|
|
|
import java.util.Iterator;
|
|
|
|
@ElementTypesAreNonnullByDefault
|
|
/* loaded from: classes3.dex */
|
|
public abstract class UnmodifiableIterator<E> implements Iterator<E> {
|
|
@Override // java.util.Iterator
|
|
@Deprecated
|
|
public final void remove() {
|
|
throw new UnsupportedOperationException();
|
|
}
|
|
}
|