Revert "Fixed regression, mono should resolve symlinks while trying to find out the available/total space."

This reverts commit d33efe59fc.
This commit is contained in:
Taloth Saldono 2016-02-11 01:52:47 +01:00
parent d33efe59fc
commit 262b8daec1
1 changed files with 0 additions and 7 deletions

View File

@ -22,13 +22,6 @@ namespace NzbDrone.Mono
_procMountProvider = procMountProvider;
}
public override IMount GetMount(string path)
{
path = UnixPath.GetCompleteRealPath(path);
return base.GetMount(path);
}
public override long? GetAvailableSpace(string path)
{
Ensure.That(path, () => path).IsValidPath();