From 3afc7b045cf3eeab71be3eef85577387d804f64a Mon Sep 17 00:00:00 2001 From: Dan Balasescu Date: Wed, 29 Oct 2025 17:27:33 +0900 Subject: [PATCH] Remove redundant default value --- osu.Game/Overlays/Notifications/Notification.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osu.Game/Overlays/Notifications/Notification.cs b/osu.Game/Overlays/Notifications/Notification.cs index 99d575da56..8a2a7cee81 100644 --- a/osu.Game/Overlays/Notifications/Notification.cs +++ b/osu.Game/Overlays/Notifications/Notification.cs @@ -42,7 +42,7 @@ namespace osu.Game.Overlays.Notifications /// /// Critical notifications show even during gameplay or other scenarios where notifications would usually be suppressed. /// - public bool IsCritical { get; init; } = false; + public bool IsCritical { get; init; } /// /// Transient notifications only show as a toast, and do not linger in notification history.