summaryrefslogtreecommitdiffstats
path: root/bridge/irc/helper.go
diff options
context:
space:
mode:
authorWim <wim@42.be>2018-11-08 00:29:30 +0100
committerWim <wim@42.be>2018-11-08 00:29:30 +0100
commit1794922263192a1ccccaf0cde2300d116e702042 (patch)
tree6455330f15a2b3b5f39331dae3e6a5131a177a2e /bridge/irc/helper.go
parent0ededb88633cd5d93665c250b49ea4f598a1a793 (diff)
downloadmatterbridge-msglm-1794922263192a1ccccaf0cde2300d116e702042.tar.gz
matterbridge-msglm-1794922263192a1ccccaf0cde2300d116e702042.tar.bz2
matterbridge-msglm-1794922263192a1ccccaf0cde2300d116e702042.zip
Make unparam linter happy
Diffstat (limited to 'bridge/irc/helper.go')
-rw-r--r--bridge/irc/helper.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/bridge/irc/helper.go b/bridge/irc/helper.go
index dd1cc468..31382aa4 100644
--- a/bridge/irc/helper.go
+++ b/bridge/irc/helper.go
@@ -32,7 +32,7 @@ func tableformatter(nicks []string, nicksPerRow int, continued bool) string {
}
*/
-func plainformatter(nicks []string, nicksPerRow int) string {
+func plainformatter(nicks []string) string {
return strings.Join(nicks, ", ") + " currently on IRC"
}