diff options
author | Rich Hickey <richhickey@gmail.com> | 2006-06-02 19:40:50 +0000 |
---|---|---|
committer | Rich Hickey <richhickey@gmail.com> | 2006-06-02 19:40:50 +0000 |
commit | f66c7a9b216cc652a88c56e7b0bb449341d04190 (patch) | |
tree | 33cd031ea02942276ca38e710f15681b96eb93e6 /src | |
parent | ac547c0a2781537672633a96adc50d3c954262c2 (diff) |
made not Cloneable for the moment
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); |