summaryrefslogtreecommitdiffstats
path: root/common/collections/append.go
diff options
context:
space:
mode:
Diffstat (limited to 'common/collections/append.go')
-rw-r--r--common/collections/append.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/common/collections/append.go b/common/collections/append.go
index b56455bc9..d6fb89241 100644
--- a/common/collections/append.go
+++ b/common/collections/append.go
@@ -51,7 +51,6 @@ func Append(to interface{}, from ...interface{}) (interface{}, error) {
} else if !fromt.AssignableTo(tot) {
// Fall back to a []interface{} slice.
return appendToInterfaceSliceFromValues(tov, fromv)
-
}
}
}