Skip to content

Commit 2d7d311

Browse files
committed
Remove null check
1 parent 397c5d1 commit 2d7d311

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Flow.Launcher.Infrastructure/QuickSwitch/Models/WindowsExplorer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public bool CheckExplorerWindow(HWND foreground)
3232
return;
3333
}
3434

35-
if (foreground != HWND.Null && explorer.HWND != foreground.Value)
35+
if (explorer.HWND != foreground.Value)
3636
{
3737
return;
3838
}

0 commit comments

Comments
 (0)