aboutsummaryrefslogtreecommitdiffstats
path: root/guava/src/com/google/common/collect/UnmodifiableIterator.java
diff options
context:
space:
mode:
Diffstat (limited to 'guava/src/com/google/common/collect/UnmodifiableIterator.java')
-rw-r--r--guava/src/com/google/common/collect/UnmodifiableIterator.java4
1 files changed, 1 insertions, 3 deletions
diff --git a/guava/src/com/google/common/collect/UnmodifiableIterator.java b/guava/src/com/google/common/collect/UnmodifiableIterator.java
index 55ceef9..5cff61b 100644
--- a/guava/src/com/google/common/collect/UnmodifiableIterator.java
+++ b/guava/src/com/google/common/collect/UnmodifiableIterator.java
@@ -30,14 +30,12 @@ import java.util.Iterator;
public abstract class UnmodifiableIterator<E> implements Iterator<E> {
/** Constructor for use by subclasses. */
protected UnmodifiableIterator() {}
-
+
/**
* Guaranteed to throw an exception and leave the underlying data unmodified.
*
* @throws UnsupportedOperationException always
- * @deprecated Unsupported operation.
*/
- @Deprecated
@Override
public final void remove() {
throw new UnsupportedOperationException();