go fmt done!

This commit is contained in:
Tanguy ⧓ Herrmann 2016-12-17 22:55:45 +01:00
parent f8a2f80b92
commit 4909b90662
4 changed files with 10 additions and 16 deletions

View file

@ -1,8 +1,5 @@
package container
import (
)
func sliceEqual(s1, s2 []string) bool {
if len(s1) != len(s2) {
return false
@ -65,4 +62,3 @@ func structMapSubtract(m1, m2 map[string]struct{}) map[string]struct{} {
return m
}