diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/org/clojure/runtime/PersistentArray.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/org/clojure/runtime/PersistentArray.java b/src/org/clojure/runtime/PersistentArray.java index 7d2468c0..1fc52e30 100644 --- a/src/org/clojure/runtime/PersistentArray.java +++ b/src/org/clojure/runtime/PersistentArray.java @@ -25,7 +25,7 @@ import java.util.Random; * See Cohen for basic idea */ -public class PersistentArray implements Cloneable, Iterable{ +public class PersistentArray implements Iterable{ public Iterator iterator(){ return new ValIter(this); |