Remove unused PropertyChanged event and OnPropertyChanged method from SettingWindowViewModel

This commit is contained in:
DB p 2025-04-23 11:53:54 +09:00
parent 942b29061e
commit 9b52cb6a10

View file

@ -58,11 +58,5 @@ public partial class SettingWindowViewModel : BaseModel
}
}
}
public event PropertyChangedEventHandler PropertyChanged;
protected virtual void OnPropertyChanged(string propertyName)
{
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
}
}