diff options
author | Rich Hickey <richhickey@gmail.com> | 2006-06-07 21:00:13 +0000 |
---|---|---|
committer | Rich Hickey <richhickey@gmail.com> | 2006-06-07 21:00:13 +0000 |
commit | 3c3e47199e7aa7d8115af5a22a3035390c4e4769 (patch) | |
tree | a68e57255a13efe5a8b409859ae3f5a9e8a6c79e /src/cli/runtime/PersistentArrayMap.cs | |
parent | 0beb225fb05fc5353082247fc0b4fc58011347a1 (diff) |
ported PersistentHybridMap and PersistentHybridIdentityMap
fixed virtual decls
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);
|