summaryrefslogtreecommitdiff
path: root/src/cli/runtime/EnumeratorSeq.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/cli/runtime/EnumeratorSeq.cs')
-rw-r--r--src/cli/runtime/EnumeratorSeq.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/cli/runtime/EnumeratorSeq.cs b/src/cli/runtime/EnumeratorSeq.cs
index af2bfab0..ef844864 100644
--- a/src/cli/runtime/EnumeratorSeq.cs
+++ b/src/cli/runtime/EnumeratorSeq.cs
@@ -13,7 +13,7 @@ using System.Collections;
namespace clojure.lang
{
-public class EnumeratorSeq : ISeq{
+public class EnumeratorSeq : ASeq{
IEnumerator e;
volatile ISeq _rest;
@@ -28,11 +28,11 @@ EnumeratorSeq(IEnumerator e){
this._rest = this;
}
-public Object first() {
+override public Object first() {
return e.Current;
}
-public ISeq rest() {
+override public ISeq rest() {
if(_rest == this)
{
lock(this){