From b030952947997256cb2176c7cb113861141d4b85 Mon Sep 17 00:00:00 2001 From: Martin Chodur Date: Tue, 31 Aug 2021 16:23:45 +0200 Subject: [PATCH] fix: drop forgotten parameter names in interfaces Signed-off-by: Martin Chodur --- pkg/event/interfaces.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkg/event/interfaces.go b/pkg/event/interfaces.go index bfb1378..cd3f797 100644 --- a/pkg/event/interfaces.go +++ b/pkg/event/interfaces.go @@ -7,7 +7,7 @@ import ( type WithEventKey interface { EventKey() string - SetEventKey(k string) + SetEventKey(string) } type Classifiable interface { @@ -17,13 +17,13 @@ type Classifiable interface { } type WithMetadata interface { - SetMetadata(stringMap stringmap.StringMap) + SetMetadata(stringmap.StringMap) Metadata() stringmap.StringMap } type WithQuantity interface { Quantity() float64 - SetQuantity(float642 float64) + SetQuantity(float64) } type WithId interface {