Browse Source

add nullable to type instead of assigning null to make rider happy :)

pull/6883/head
Jumar Macato 4 years ago
parent
commit
998e49f75b
No known key found for this signature in database GPG Key ID: 85076C4D9D3155A3
  1. 2
      src/Avalonia.X11/X11PlatformLifetimeEvents.cs

2
src/Avalonia.X11/X11PlatformLifetimeEvents.cs

@ -241,6 +241,6 @@ namespace Avalonia.X11
IntPtr.Zero);
}
public event EventHandler<ShutdownRequestedEventArgs> ShutdownRequested = null!;
public event EventHandler<ShutdownRequestedEventArgs>? ShutdownRequested;
}
}

Loading…
Cancel
Save