mirror of
https://github.com/ppy/osu
synced 2025-01-19 04:20:59 +00:00
Don't need explicit null value.
This commit is contained in:
parent
5cb16f6e7c
commit
2e80ecfda8
@ -273,10 +273,10 @@ namespace osu.Game.Beatmaps.Formats
|
||||
|
||||
HitObjectParser parser = null;
|
||||
|
||||
Section section = Section.None;
|
||||
bool hasCustomColours = false;
|
||||
|
||||
Section section = Section.None;
|
||||
string line = null;
|
||||
string line;
|
||||
while ((line = stream.ReadLine()) != null)
|
||||
{
|
||||
if (string.IsNullOrEmpty(line))
|
||||
|
Loading…
Reference in New Issue
Block a user