Address formatting issues

This commit is contained in:
Shivam
2020-06-24 00:37:29 +02:00
parent 9d2392b6b1
commit c32ef5e718
4 changed files with 16 additions and 28 deletions

View File

@ -14,25 +14,13 @@ namespace osu.Game.IO
private readonly GameHost host;
private readonly StorageConfigManager storageConfig;
internal override string[] IGNORE_DIRECTORIES
{
get
{
return new string[] { "cache" };
}
}
internal override string[] IgnoreDirectories => new[] { "cache" };
internal override string[] IGNORE_FILES
internal override string[] IgnoreFiles => new[]
{
get
{
return new string[]
{
"framework.ini",
"storage.ini"
};
}
}
"framework.ini",
"storage.ini"
};
public OsuStorage(GameHost host)
: base(host.Storage, string.Empty)
@ -53,7 +41,7 @@ namespace osu.Game.IO
Logger.Storage = UnderlyingStorage.GetStorageForDirectory("logs");
}
override public void Migrate(string newLocation)
public override void Migrate(string newLocation)
{
var source = new DirectoryInfo(GetFullPath("."));
var destination = new DirectoryInfo(newLocation);