浏览代码

fix: Remove superfluous parameter

Matthias Ladkau 5 年之前
父节点
当前提交
cfa89a6c39
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      lang/ecal/parser/runtime.go

+ 1 - 1
lang/ecal/parser/runtime.go

@@ -53,7 +53,7 @@ type Scope interface {
 	/*
 	   Parent returns the parent scope or nil.
 	*/
-	Parent(name string) Scope
+	Parent() Scope
 
 	/*
 	   SetValue sets a new value for a variable.