mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Use == for != operator
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
This commit is contained in:
parent
537c03f2d7
commit
b3aa89773c
1 changed files with 0 additions and 2 deletions
|
|
@ -51,8 +51,6 @@ public class ThemeData
|
||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
public static bool operator !=(ThemeData left, ThemeData right)
|
public static bool operator !=(ThemeData left, ThemeData right)
|
||||||
{
|
{
|
||||||
if (left is null && right is null)
|
|
||||||
return false;
|
|
||||||
return !(left == right);
|
return !(left == right);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue