Browse Source
add nullable to type instead of assigning null to make rider happy :)
pull/6883/head
Jumar Macato
4 years ago
No known key found for this signature in database
GPG Key ID: 85076C4D9D3155A3
1 changed files with
1 additions and
1 deletions
-
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; |
|
|
|
} |
|
|
|
} |
|
|
|
|