1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-22 01:59:53 +08:00

Remove unnecessary cast

This commit is contained in:
Dean Herbert
2018-07-18 22:22:28 +09:00
Unverified
parent 0c24244340
commit 41441771ae
+1 -1
View File
@@ -12,6 +12,6 @@ namespace osu.Game.Tests.Platform
{
}
public override string GetDatabaseConnectionString(string name) => "Data Source=" + GetUsablePathFor($"{(object)name}.db", true);
public override string GetDatabaseConnectionString(string name) => "Data Source=" + GetUsablePathFor($"{name}.db", true);
}
}