소스 검색

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.