Skip to content

Commit

Permalink
Sprintf Changes
Browse files Browse the repository at this point in the history
Change Sprintf to be one line in GoString
  • Loading branch information
noejbrown committed Jul 15, 2022
1 parent e9e0313 commit a733ece
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions config/module_input_intentions.go
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,6 @@ func (c *IntentionsModuleInputConfig) GoString() string {
return "(*IntentionsModuleInputConfig)(nil)"
}

return fmt.Sprintf("&IntentionsModuleInputConfig{"+
"%s"+
"}",
c.IntentionsMonitorConfig.GoString(),
return fmt.Sprintf("&IntentionsModuleInputConfig{"+ "%s"+ "}", c.IntentionsMonitorConfig.GoString(),
)
}

0 comments on commit a733ece

Please sign in to comment.