diff options
author | Rich Hickey <richhickey@gmail.com> | 2006-08-04 22:31:21 +0000 |
---|---|---|
committer | Rich Hickey <richhickey@gmail.com> | 2006-08-04 22:31:21 +0000 |
commit | b47c234ac5a398894c8f3ce5dc7c06a5e7926e10 (patch) | |
tree | 198470083f9e1088315c8ce917904c9a2cae2ab7 /src/cli/runtime/PersistentHashtableMap.cs | |
parent | 8c2c0ea39e31c05863a5f0d07fb3916a345c3da8 (diff) |
renamed ISequential to IPersistentCollection
Diffstat (limited to 'src/cli/runtime/PersistentHashtableMap.cs')
-rw-r--r-- | src/cli/runtime/PersistentHashtableMap.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cli/runtime/PersistentHashtableMap.cs b/src/cli/runtime/PersistentHashtableMap.cs index 520bb05a..0cf2206d 100644 --- a/src/cli/runtime/PersistentHashtableMap.cs +++ b/src/cli/runtime/PersistentHashtableMap.cs @@ -195,7 +195,7 @@ class Seq : ISeq{ return new Seq(buckets,b,e.rest());
for(b = b+1;b<buckets.length();b++)
{
- ISequential a = (ISequential) buckets.get(b);
+ IPersistentCollection a = (IPersistentCollection) buckets.get(b);
if(a != null && a.seq() != null)
return new Seq(buckets,b,a.seq());
}
|