From d70b18423afb5fca593bc4447d65e7dcf2e37edf Mon Sep 17 00:00:00 2001 From: Luis von der Eltz Date: Tue, 16 Mar 2021 18:57:37 +0100 Subject: [PATCH] Fix nullable warning --- .../FreeDesktopNotificationProxy.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/DesktopNotifications.FreeDesktop/FreeDesktopNotificationProxy.cs b/DesktopNotifications.FreeDesktop/FreeDesktopNotificationProxy.cs index 8f2c5ac..7f3864c 100644 --- a/DesktopNotifications.FreeDesktop/FreeDesktopNotificationProxy.cs +++ b/DesktopNotifications.FreeDesktop/FreeDesktopNotificationProxy.cs @@ -1,4 +1,6 @@ -using System; +#nullable disable + +using System; using System.Collections.Generic; using System.Runtime.CompilerServices; using System.Threading.Tasks;