diff --git a/libpod/boltdb_state_unsupported.go b/libpod/boltdb_state_unsupported.go index 4565c1890d..64610d304a 100644 --- a/libpod/boltdb_state_unsupported.go +++ b/libpod/boltdb_state_unsupported.go @@ -2,10 +2,6 @@ package libpod -import ( - "github.com/sirupsen/logrus" -) - // replaceNetNS is exclusive to the Linux platform and is a no-op elsewhere func replaceNetNS(netNSPath string, ctr *Container, newState *containerState) error { return nil @@ -13,5 +9,5 @@ func replaceNetNS(netNSPath string, ctr *Container, newState *containerState) er // getNetNSPath is exclusive to the Linux platform and is a no-op elsewhere func getNetNSPath(ctr *Container) string { - return + return "" }