Commit 083e806c authored by Adam Blank's avatar Adam Blank
Browse files

Update ISet.java

parent cd3a5300
No related merge requests found
Pipeline #8803 failed with stage
in 0 seconds
Showing with 1 addition and 0 deletions
+1 -0
...@@ -55,6 +55,7 @@ public class ISet<E> implements Iterable<E> { ...@@ -55,6 +55,7 @@ public class ISet<E> implements Iterable<E> {
* *
* @return an iterator over the elements in this set * @return an iterator over the elements in this set
*/ */
@Override
public Iterator<E> iterator() { public Iterator<E> iterator() {
return this.internalDictionary.iterator(); return this.internalDictionary.iterator();
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment