diff --git a/daemon/daemon_unix.go b/daemon/daemon_unix.go index acfa7766b5..dcbafe0261 100644 --- a/daemon/daemon_unix.go +++ b/daemon/daemon_unix.go @@ -4,7 +4,6 @@ package daemon import ( "bytes" - "encoding/json" "fmt" "io/ioutil" "net" @@ -1281,12 +1280,6 @@ func (daemon *Daemon) setupSeccompProfile() error { return fmt.Errorf("opening seccomp profile (%s) failed: %v", daemon.configStore.SeccompProfile, err) } daemon.seccompProfile = b - p := struct { - DefaultAction string `json:"defaultAction"` - }{} - if err := json.Unmarshal(daemon.seccompProfile, &p); err != nil { - return err - } } return nil }