pkg/util/mount: remove method redeclaration

Fix the `GetDeviceNameFromMount` method thats declared twice.
This commit is contained in:
Tamer Tas 2016-08-19 16:49:28 +03:00
parent 2707c46a32
commit fe039573b7

View File

@ -48,10 +48,6 @@ func (mounter *Mounter) PathIsDevice(pathname string) (bool, error) {
return true, nil
}
func (mounter *Mounter) GetDeviceNameFromMount(mountPath, pluginDir string) (string, error) {
return "", nil
}
func (mounter *SafeFormatAndMount) formatAndMount(source string, target string, fstype string, options []string) error {
return nil
}