From 92b80cbcda65ecd8964fb7d82b8d3e2d11f0e3f0 Mon Sep 17 00:00:00 2001 From: leo Date: Mon, 15 Apr 2024 18:07:17 +0800 Subject: [PATCH] code_style: remove unnecessary parentheses --- src/Native/OS.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Native/OS.cs b/src/Native/OS.cs index 259b6a22..c3a94037 100644 --- a/src/Native/OS.cs +++ b/src/Native/OS.cs @@ -61,7 +61,7 @@ namespace SourceGit.Native { if (OperatingSystem.IsWindows()) { - var windows = (_backend as Windows); + var windows = _backend as Windows; if (windows.Shell != shell) { windows.Shell = shell;