mirror of
https://github.com/ppy/osu
synced 2025-04-01 14:38:37 +00:00
Use string interpolation
This commit is contained in:
parent
199d76217e
commit
293a5dd099
@ -96,7 +96,8 @@ namespace osu.Game.Database
|
|||||||
private void handleEvent(Action a)
|
private void handleEvent(Action a)
|
||||||
{
|
{
|
||||||
if (delayingEvents)
|
if (delayingEvents)
|
||||||
lock (queuedEvents) queuedEvents.Add(a);
|
lock (queuedEvents)
|
||||||
|
queuedEvents.Add(a);
|
||||||
else
|
else
|
||||||
a.Invoke();
|
a.Invoke();
|
||||||
}
|
}
|
||||||
@ -441,7 +442,7 @@ namespace osu.Game.Database
|
|||||||
if (!stable.ExistsDirectory(ImportFromStablePath))
|
if (!stable.ExistsDirectory(ImportFromStablePath))
|
||||||
{
|
{
|
||||||
// This handles situations like when the user does not have a Skins folder
|
// This handles situations like when the user does not have a Skins folder
|
||||||
Logger.Log("No " + ImportFromStablePath + " folder available in osu!stable installation", LoggingTarget.Information, LogLevel.Error);
|
Logger.Log($"No {ImportFromStablePath} folder available in osu!stable installation", LoggingTarget.Information, LogLevel.Error);
|
||||||
return Task.CompletedTask;
|
return Task.CompletedTask;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user