Skip to content

Commit

Permalink
Fix redundant lambda parentheses
Browse files Browse the repository at this point in the history
  • Loading branch information
jvyden committed Apr 16, 2021
1 parent 8d6c30c commit 9c6914d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion osu.Game/OsuGame.cs
Original file line number Diff line number Diff line change
Expand Up @@ -580,7 +580,7 @@ protected override void LoadComplete()
GameIdleTracker sessionIdleTracker = new GameIdleTracker(300_000);
Add(sessionIdleTracker);

sessionIdleTracker.IsIdle.BindValueChanged((e) =>
sessionIdleTracker.IsIdle.BindValueChanged(e =>
{
if (e.NewValue)
Dependencies.Get<SessionStatics>().ResetValues();
Expand Down

0 comments on commit 9c6914d

Please sign in to comment.