summaryrefslogtreecommitdiff
path: root/src/cli/runtime/FnSeq.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/cli/runtime/FnSeq.cs')
-rw-r--r--src/cli/runtime/FnSeq.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/cli/runtime/FnSeq.cs b/src/cli/runtime/FnSeq.cs
index e98a3635..27374eea 100644
--- a/src/cli/runtime/FnSeq.cs
+++ b/src/cli/runtime/FnSeq.cs
@@ -13,7 +13,7 @@ using System;
namespace clojure.lang
{
-public class FnSeq : ISeq{
+public class FnSeq : ASeq{
Object _first;
IFn restFn;
@@ -25,11 +25,11 @@ public FnSeq(Object first, IFn restFn) {
this._rest = this;
}
-public Object first() {
+override public Object first() {
return _first;
}
-public ISeq rest() {
+override public ISeq rest() {
if(_rest != this)
return _rest;
lock(this){