Remove unnecessary PathSanitise call

This commit is contained in:
HoLLy 2018-10-12 15:30:24 +02:00
parent bb07630743
commit 710b0a4664

View File

@ -298,6 +298,6 @@ namespace osu.Game.Beatmaps.Formats
}
}
private string cleanFilename(string path) => FileSafety.PathStandardise(FileSafety.PathSanitise(path.Trim('\"')));
private string cleanFilename(string path) => FileSafety.PathStandardise(path.Trim('"'));
}
}