mirror of
https://github.com/ppy/osu
synced 2024-12-29 02:12:43 +00:00
Simplify parsing
This commit is contained in:
parent
c24328dda3
commit
a8ae0a032f
@ -403,9 +403,12 @@ namespace osu.Game.Screens.Select
|
||||
|
||||
foreach (string key in keys)
|
||||
{
|
||||
if (match[key].Success)
|
||||
if (!match.TryGetValue(key, out var group) || !group.Success)
|
||||
continue;
|
||||
|
||||
if (group.Success)
|
||||
{
|
||||
if (!tryParseDoubleWithPoint(match[key].Value, out double length))
|
||||
if (!tryParseDoubleWithPoint(group.Value, out double length))
|
||||
return false;
|
||||
|
||||
switch (key)
|
||||
|
Loading…
Reference in New Issue
Block a user