Skip to content

Commit b3aa897

Browse files
Use == for != operator
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
1 parent 537c03f commit b3aa897

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

Flow.Launcher.Plugin/SharedModels/ThemeData.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,6 @@ public ThemeData(string fileNameWithoutExtension, string name, bool? isDark = nu
5151
/// <inheritdoc />
5252
public static bool operator !=(ThemeData left, ThemeData right)
5353
{
54-
if (left is null && right is null)
55-
return false;
5654
return !(left == right);
5755
}
5856

0 commit comments

Comments
 (0)