add missing quotation mark

This commit is contained in:
Pilzinsel64
2024-07-29 09:59:37 +02:00
parent eba14dc2b7
commit 2ba7088290
2 changed files with 2 additions and 2 deletions

View File

@@ -5,7 +5,7 @@ namespace Pilz.UI.Extensions;
public static class FlyoutBaseExtensions
{
public static bool IsValid([NotNullWhen(true)] this FlyoutBase @this)
public static bool IsValid([NotNullWhen(true)] this FlyoutBase? @this)
{
return @this != null && @this.Result == DialogResult.OK;
}