summaryrefslogtreecommitdiffstats
path: root/modules/mono/editor/GodotTools/GodotTools.Core/ProcessExtensions.cs
diff options
context:
space:
mode:
authorThaddeus Crews <repiteo@outlook.com>2024-01-12 22:24:12 -0600
committerThaddeus Crews <repiteo@outlook.com>2024-02-13 12:24:53 -0600
commit3314f8cc6532af5057738d1059876706ee7062af (patch)
tree3a81c2bb7c3d772fc1e0115fc45da5db0af7cb02 /modules/mono/editor/GodotTools/GodotTools.Core/ProcessExtensions.cs
parent9adb7c7d130c6d4eb0e80b92d6eebd71fac3384d (diff)
downloadredot-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.cs2
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);
}