1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-16 06:45:37 +08:00

Move statement to a new line

This commit is contained in:
HoutarouOreki 2018-07-25 20:01:24 +02:00
parent fb8ea770ae
commit 81786c4763

View File

@ -54,7 +54,8 @@ namespace osu.Game.Overlays.Changelog
{ {
if (changelogChart != null) if (changelogChart != null)
foreach (BuildHistory buildHistory in changelogChart.BuildHistory) foreach (BuildHistory buildHistory in changelogChart.BuildHistory)
if (buildHistory.UserCount > 0) return false; if (buildHistory.UserCount > 0)
return false;
return true; return true;
} }