diff options
author | Thaddeus Crews <repiteo@outlook.com> | 2024-01-12 22:24:12 -0600 |
---|---|---|
committer | Thaddeus Crews <repiteo@outlook.com> | 2024-02-13 12:24:53 -0600 |
commit | 3314f8cc6532af5057738d1059876706ee7062af (patch) | |
tree | 3a81c2bb7c3d772fc1e0115fc45da5db0af7cb02 /modules/mono/editor/GodotTools/GodotTools.Core/ProcessExtensions.cs | |
parent | 9adb7c7d130c6d4eb0e80b92d6eebd71fac3384d (diff) | |
download | redot-engine-3314f8cc6532af5057738d1059876706ee7062af.tar.gz |
C#: Enable nullable environment for `GodotTools`
Diffstat (limited to 'modules/mono/editor/GodotTools/GodotTools.Core/ProcessExtensions.cs')
-rw-r--r-- | modules/mono/editor/GodotTools/GodotTools.Core/ProcessExtensions.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mono/editor/GodotTools/GodotTools.Core/ProcessExtensions.cs b/modules/mono/editor/GodotTools/GodotTools.Core/ProcessExtensions.cs index a4d7dedbd5..4dd18b4c03 100644 --- a/modules/mono/editor/GodotTools/GodotTools.Core/ProcessExtensions.cs +++ b/modules/mono/editor/GodotTools/GodotTools.Core/ProcessExtensions.cs @@ -11,7 +11,7 @@ namespace GodotTools.Core { var tcs = new TaskCompletionSource<bool>(); - void ProcessExited(object sender, EventArgs e) + void ProcessExited(object? sender, EventArgs e) { tcs.TrySetResult(true); } |