summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRich Hickey <richhickey@gmail.com>2006-06-02 19:40:50 +0000
committerRich Hickey <richhickey@gmail.com>2006-06-02 19:40:50 +0000
commitf66c7a9b216cc652a88c56e7b0bb449341d04190 (patch)
tree33cd031ea02942276ca38e710f15681b96eb93e6 /src
parentac547c0a2781537672633a96adc50d3c954262c2 (diff)
made not Cloneable for the moment
Diffstat (limited to 'src')
-rw-r--r--src/org/clojure/runtime/PersistentArray.java2
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);