That function is not needed anymore.

configurable-file-paths
Robert Gerus 2015-11-17 18:50:38 +01:00
parent 175aa6e79a
commit d069578cbc
1 changed files with 0 additions and 11 deletions

View File

@ -123,14 +123,3 @@ func TestMain(m *testing.M) {
func configLookupHelper(map[string]string) []string {
return []string{".testconfig.json"}
}
func eventCollector(quit chan struct{}, input chan irc.Message) (r []irc.Message) {
for {
select {
case msg := <-input:
r = append(r, msg)
case <-quit:
return r
}
}
}