go fmt...

This commit is contained in:
Fabrizio Steiner 2017-01-24 21:05:27 +01:00
parent 6a72ba24c9
commit eda5391d0a
5 changed files with 8 additions and 14 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
}