Rabbit-R1/android (non root)/java/sources/com/google/common/collect/UnmodifiableIterator.java
2024-05-21 17:08:36 -04:00

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();
}
}