Skip to content

Commit

Permalink
fix: drop forgotten parameter names in interfaces
Browse files Browse the repository at this point in the history
Signed-off-by: Martin Chodur <[email protected]>
  • Loading branch information
FUSAKLA committed Aug 31, 2021
1 parent d2c1066 commit 04ba135
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkg/event/interfaces.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (

type WithEventKey interface {
EventKey() string
SetEventKey(k string)
SetEventKey(string)
}

type Classifiable interface {
Expand All @@ -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 {
Expand Down

0 comments on commit 04ba135

Please sign in to comment.