mirror of
https://github.com/osukey/osukey.git
synced 2025-08-05 15:44:04 +09:00
Apply batch fixing of built-in types using var
This commit is contained in:
@ -68,7 +68,7 @@ namespace osu.Game.Screens.Edit.Timing
|
||||
if (!isNew)
|
||||
return;
|
||||
|
||||
if (double.TryParse(sender.Text, out var newTime))
|
||||
if (double.TryParse(sender.Text, out double newTime))
|
||||
{
|
||||
changeSelectedGroupTime(newTime);
|
||||
}
|
||||
|
Reference in New Issue
Block a user