diff options
author | Rich Hickey <richhickey@gmail.com> | 2006-06-09 12:59:23 +0000 |
---|---|---|
committer | Rich Hickey <richhickey@gmail.com> | 2006-06-09 12:59:23 +0000 |
commit | abb9f4e91313a368103e73f729de5792d3c5e435 (patch) | |
tree | 4e112e0bf5c40a7fce26e5346a1f403a6b707f0f /src/cli/runtime/PersistentHashtableIdentityMap.cs | |
parent | 4f72b81de88948e149af93dd96406e4f519e15c6 (diff) |
renamed rest() to next()
Diffstat (limited to 'src/cli/runtime/PersistentHashtableIdentityMap.cs')
-rw-r--r-- | src/cli/runtime/PersistentHashtableIdentityMap.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cli/runtime/PersistentHashtableIdentityMap.cs b/src/cli/runtime/PersistentHashtableIdentityMap.cs index 1fb191bf..13880273 100644 --- a/src/cli/runtime/PersistentHashtableIdentityMap.cs +++ b/src/cli/runtime/PersistentHashtableIdentityMap.cs @@ -70,7 +70,7 @@ internal class Iter2 : IEnumerator public bool MoveNext()
{
- if (e == null || (e = ((PersistentListIdentityMap)e).rest()) == PersistentListIdentityMap.EMPTY)
+ if (e == null || (e = ((PersistentListIdentityMap)e).next()) == PersistentListIdentityMap.EMPTY)
nextBucket();
return e != null;
}
|