summaryrefslogtreecommitdiffstats
path: root/modules/mono/editor/GodotTools/GodotTools.Core/ProcessExtensions.cs
diff options
context:
space:
mode:
authorIgnacio Roldán Etcheverry <neikeq@users.noreply.github.com>2021-09-03 18:44:36 +0200
committerGitHub <noreply@github.com>2021-09-03 18:44:36 +0200
commitade4e9320a6ca403b8053fe5828d3f9ce809338c (patch)
tree38663e7c6a31035e0f3caf28590bacf9824f6a02 /modules/mono/editor/GodotTools/GodotTools.Core/ProcessExtensions.cs
parentc3591a9b04f3cc62d5ea4fe13228979b0200cce3 (diff)
parent1933df00138618c9004b6a6343e2f983df58bd3c (diff)
downloadredot-engine-ade4e9320a6ca403b8053fe5828d3f9ce809338c.tar.gz
Merge pull request #50872 from aaronfranke/cs-format-mini-2
Some more C# formatting and style fixes
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 43d40f2ad9..a4d7dedbd5 100644
--- a/modules/mono/editor/GodotTools/GodotTools.Core/ProcessExtensions.cs
+++ b/modules/mono/editor/GodotTools/GodotTools.Core/ProcessExtensions.cs
@@ -7,7 +7,7 @@ namespace GodotTools.Core
{
public static class ProcessExtensions
{
- public static async Task WaitForExitAsync(this Process process, CancellationToken cancellationToken = default(CancellationToken))
+ public static async Task WaitForExitAsync(this Process process, CancellationToken cancellationToken = default)
{
var tcs = new TaskCompletionSource<bool>();