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/PersistentHashtableMap.cs | |
parent | 4f72b81de88948e149af93dd96406e4f519e15c6 (diff) |
renamed rest() to next()
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 cb4e2f1a..e00cd565 100644 --- a/src/cli/runtime/PersistentHashtableMap.cs +++ b/src/cli/runtime/PersistentHashtableMap.cs @@ -185,7 +185,7 @@ public object Current public bool MoveNext()
{
- if (e == null || (e = ((PersistentListMap)e).rest()) == PersistentListMap.EMPTY)
+ if (e == null || (e = ((PersistentListMap)e).next()) == PersistentListMap.EMPTY)
nextBucket();
return e != null;
}
|