diff options
Diffstat (limited to 'src/cli/runtime/PersistentArrayMap.cs')
-rw-r--r-- | src/cli/runtime/PersistentArrayMap.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cli/runtime/PersistentArrayMap.cs b/src/cli/runtime/PersistentArrayMap.cs index dd1d2e29..cffe1738 100644 --- a/src/cli/runtime/PersistentArrayMap.cs +++ b/src/cli/runtime/PersistentArrayMap.cs @@ -27,7 +27,7 @@ namespace org.clojure.runtime public class PersistentArrayMap : IPersistentMap {
-readonly Object[] array;
+internal readonly Object[] array;
public PersistentArrayMap(){
this.array = RT.EMPTY_ARRAY;
@@ -122,7 +122,7 @@ int indexOf(Object key){ return -1;
}
-bool equalKey(Object k1,Object k2){
+internal virtual bool equalKey(Object k1,Object k2){
if(k1 == null)
return k2 == null;
return k1.Equals(k2);
|