Skip to content

Commit ac7153b

Browse files
committed
build: suppress MA0150
1 parent 5941e85 commit ac7153b

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

src/Atc.Wpf.Theming/Behaviors/WindowsSettingBehavior.cs

+3-6
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
namespace Atc.Wpf.Theming.Behaviors;
33

44
[SuppressMessage("Design", "CA1031:Do not catch general exception types", Justification = "OK.")]
5+
[SuppressMessage("Design", "MA0150:Do not call the default object.ToString explicitly", Justification = "OK.")]
56
public sealed class WindowsSettingBehavior : Behavior<NiceWindow>
67
{
78
/// <inheritdoc />
@@ -106,13 +107,9 @@ private void CleanUp(
106107
private void LoadWindowState()
107108
{
108109
var window = AssociatedObject;
109-
if (window is null)
110-
{
111-
return;
112-
}
113110

114-
var settings = window.GetWindowPlacementSettings();
115-
if (settings is null || !window.SaveWindowPosition)
111+
var settings = window?.GetWindowPlacementSettings();
112+
if (settings is null || !window!.SaveWindowPosition)
116113
{
117114
return;
118115
}

0 commit comments

Comments
 (0)