summaryrefslogtreecommitdiff
path: root/src/cli/runtime/PersistentArrayMap.cs
diff options
context:
space:
mode:
authorRich Hickey <richhickey@gmail.com>2006-10-02 19:51:10 +0000
committerRich Hickey <richhickey@gmail.com>2006-10-02 19:51:10 +0000
commit3302b103d19483ab301c98f381f03eb3a2ed0107 (patch)
tree662330eb6638ae26bd8037d206d48cb7abe2fa6a /src/cli/runtime/PersistentArrayMap.cs
parentbc5dc23be88ad294d86d8d2b09583c41eafdd9b9 (diff)
interim checkin
Diffstat (limited to 'src/cli/runtime/PersistentArrayMap.cs')
-rw-r--r--src/cli/runtime/PersistentArrayMap.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cli/runtime/PersistentArrayMap.cs b/src/cli/runtime/PersistentArrayMap.cs
index 8ffaca76..68d4b2c1 100644
--- a/src/cli/runtime/PersistentArrayMap.cs
+++ b/src/cli/runtime/PersistentArrayMap.cs
@@ -34,7 +34,7 @@ internal readonly Object[] array;
internal const int HASHTABLE_THRESHOLD = 42;
protected PersistentArrayMap(){
- this.array = RT.EMPTY_ARRAY;
+ this.array = new object[]{};
}
virtual internal PersistentArrayMap create(params Object[] init){