summaryrefslogtreecommitdiff
path: root/src/org/clojure/runtime/IdentityArrayMap.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/org/clojure/runtime/IdentityArrayMap.java')
-rw-r--r--src/org/clojure/runtime/IdentityArrayMap.java6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/org/clojure/runtime/IdentityArrayMap.java b/src/org/clojure/runtime/IdentityArrayMap.java
index 0c4991de..ed0c7106 100644
--- a/src/org/clojure/runtime/IdentityArrayMap.java
+++ b/src/org/clojure/runtime/IdentityArrayMap.java
@@ -14,6 +14,12 @@ package org.clojure.runtime;
* ArrayMap using identity (==) comparison instead of equals
*/
public class IdentityArrayMap extends ArrayMap{
+public IdentityArrayMap() {
+}
+
+public IdentityArrayMap(Object[] init) {
+ super(init);
+}
boolean equalKey(Object k1, Object k2) {
return k1 == k2;