diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-12-12 13:54:10 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-12 13:54:10 +0100 |
commit | 234fab949a1ff7214c4de91c66c897535d28e5a7 (patch) | |
tree | 776fb5c95ffa30e2f088ee4d318193c283ae14bf /modules/mono/editor/GodotTools/GodotTools.IdeConnection/GodotIdeClient.cs | |
parent | ee11b0eda7169fec9f2868b6cc3fe768a7107fcb (diff) | |
parent | 5771f9959c5fe0d0a236f334a6211cbe20c8b293 (diff) |
Merge pull request #34277 from aaronfranke/mono-format
Code formatting for the Mono module
Diffstat (limited to 'modules/mono/editor/GodotTools/GodotTools.IdeConnection/GodotIdeClient.cs')
-rw-r--r-- | modules/mono/editor/GodotTools/GodotTools.IdeConnection/GodotIdeClient.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/mono/editor/GodotTools/GodotTools.IdeConnection/GodotIdeClient.cs b/modules/mono/editor/GodotTools/GodotTools.IdeConnection/GodotIdeClient.cs index 4f56a8d71b..2bf3b83c75 100644 --- a/modules/mono/editor/GodotTools/GodotTools.IdeConnection/GodotIdeClient.cs +++ b/modules/mono/editor/GodotTools/GodotTools.IdeConnection/GodotIdeClient.cs @@ -106,7 +106,7 @@ namespace GodotTools.IdeConnection try { Logger.LogInfo("Connecting to Godot Ide Server"); - + tcpClient.Connect(IPAddress.Loopback, GodotIdeMetadata.Port); Logger.LogInfo("Connection open with Godot Ide Server"); @@ -130,7 +130,7 @@ namespace GodotTools.IdeConnection public void Start() { Logger.LogInfo("Starting Godot Ide Client"); - + fsWatcher.Changed += OnMetaFileChanged; fsWatcher.Deleted += OnMetaFileDeleted; fsWatcher.EnableRaisingEvents = true; |