summaryrefslogtreecommitdiff
path: root/src/cli/runtime/MapEntry.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/cli/runtime/MapEntry.cs')
-rw-r--r--src/cli/runtime/MapEntry.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/cli/runtime/MapEntry.cs b/src/cli/runtime/MapEntry.cs
index 606336d3..88358b27 100644
--- a/src/cli/runtime/MapEntry.cs
+++ b/src/cli/runtime/MapEntry.cs
@@ -110,18 +110,18 @@ override public ISeq seq() {
return new Seq(this);
}
-class Seq : ISeq{
+class Seq : ASeq{
MapEntry e;
public Seq(MapEntry e) {
this.e = e;
}
- public Object first() {
+ override public Object first() {
return e;
}
- public ISeq rest() {
+ override public ISeq rest() {
return null;
}
}