Skip to content

Commit

Permalink
added nolint:unparam to bypass golint
Browse files Browse the repository at this point in the history
  • Loading branch information
Devaansh-Kumar committed Aug 15, 2024
1 parent 0dc695e commit 209e375
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/i2gw/providers/openapi3/notification.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import (
"sigs.k8s.io/controller-runtime/pkg/client"
)

func notify(mType notifications.MessageType, message string, callingObject ...client.Object) {
func notify(mType notifications.MessageType, message string, callingObject ...client.Object) { //nolint:unparam
newNotification := notifications.NewNotification(mType, message, callingObject...)
notifications.NotificationAggr.DispatchNotification(newNotification, string(ProviderName))
}

0 comments on commit 209e375

Please sign in to comment.