diff --git a/Qwilight/Model.cs b/Qwilight/Model.cs index 5017d6f..05ed2dc 100644 --- a/Qwilight/Model.cs +++ b/Qwilight/Model.cs @@ -1,21 +1,9 @@ using CommunityToolkit.Mvvm.ComponentModel; -using System.ComponentModel; namespace Qwilight { public class Model : ObservableObject { public virtual void NotifyModel() => OnPropertyChanged(string.Empty); - - protected override void OnPropertyChanged(PropertyChangedEventArgs e) - { - try - { - base.OnPropertyChanged(e); - } - catch (Win32Exception) - { - } - } } }