summaryrefslogtreecommitdiffstats
path: root/vespajlib
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@yahoo-inc.com>2017-09-07 14:09:53 +0200
committerJon Bratseth <bratseth@yahoo-inc.com>2017-09-07 14:09:53 +0200
commit4f322fa06ca0a2431a0c7b29a7f8c089e33f4d6a (patch)
treeeb3d2cfe8399385d2eb6c6fa28814fefc127ef5e /vespajlib
parent9c8162a9f042c5cf6bebe6771a74c851d0f419ad (diff)
Nonfunctional changes only
Diffstat (limited to 'vespajlib')
-rw-r--r--vespajlib/src/main/java/com/yahoo/collections/ArraySet.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/vespajlib/src/main/java/com/yahoo/collections/ArraySet.java b/vespajlib/src/main/java/com/yahoo/collections/ArraySet.java
index 18e52090033..dee8417f15b 100644
--- a/vespajlib/src/main/java/com/yahoo/collections/ArraySet.java
+++ b/vespajlib/src/main/java/com/yahoo/collections/ArraySet.java
@@ -18,15 +18,16 @@ import java.util.Set;
* in IdentityHashMap, where the key set is often used as an identity set.
* </p>
*
- * @author <a href="mailto:steinar@yahoo-inc.com">Steinar Knutsen</a>
+ * @author Steinar Knutsen
* @author baldersheim
- * @since 5.1.4
*
* @param <E>
* the type contained in the Set
*/
public final class ArraySet<E> implements Set<E> {
+
private class ArrayIterator<T> implements Iterator<E> {
+
private int i = -1;
private boolean removed = false;