Simplify parsing

This commit is contained in:
Bartłomiej Dach 2024-02-14 15:58:38 +01:00
parent c24328dda3
commit a8ae0a032f
No known key found for this signature in database

View File

@ -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)