1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-28 06:42:54 +08:00

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('"'));
} }
} }