diff --git a/virtcontainers/hypervisor.go b/virtcontainers/hypervisor.go index 3f910e44da..707eca6b83 100644 --- a/virtcontainers/hypervisor.go +++ b/virtcontainers/hypervisor.go @@ -587,11 +587,6 @@ func (conf *HypervisorConfig) HypervisorCtlAssetPath() (string, error) { return conf.assetPath(types.HypervisorCtlAsset) } -// JailerAssetPath returns the VM Jailer path -func (conf *HypervisorConfig) JailerAssetPath() (string, error) { - return conf.assetPath(types.JailerAsset) -} - // CustomHypervisorAsset returns true if the hypervisor asset is a custom one, false otherwise. func (conf *HypervisorConfig) CustomHypervisorAsset() bool { return conf.isCustomAsset(types.HypervisorAsset) @@ -602,11 +597,6 @@ func (conf *HypervisorConfig) FirmwareAssetPath() (string, error) { return conf.assetPath(types.FirmwareAsset) } -// CustomFirmwareAsset returns true if the firmware asset is a custom one, false otherwise. -func (conf *HypervisorConfig) CustomFirmwareAsset() bool { - return conf.isCustomAsset(types.FirmwareAsset) -} - func appendParam(params []Param, parameter string, value string) []Param { return append(params, Param{parameter, value}) }