diff options
author | Rich Hickey <richhickey@gmail.com> | 2006-10-02 19:51:10 +0000 |
---|---|---|
committer | Rich Hickey <richhickey@gmail.com> | 2006-10-02 19:51:10 +0000 |
commit | 3302b103d19483ab301c98f381f03eb3a2ed0107 (patch) | |
tree | 662330eb6638ae26bd8037d206d48cb7abe2fa6a /src/cli/runtime/PersistentArrayMap.cs | |
parent | bc5dc23be88ad294d86d8d2b09583c41eafdd9b9 (diff) |
interim checkin
Diffstat (limited to 'src/cli/runtime/PersistentArrayMap.cs')
-rw-r--r-- | src/cli/runtime/PersistentArrayMap.cs | 2 |
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){
|