mirror of
https://github.com/ppy/osu.git
synced 2026-05-28 04:14:26 +08:00
Simplify parsing
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user