1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-28 04:14:26 +08:00

Simplify parsing

This commit is contained in:
Bartłomiej Dach
2024-02-14 15:58:38 +01:00
Unverified
parent c24328dda3
commit a8ae0a032f
+5 -2
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)