From 4366352ff35469a57e4b7c7e64dfe4a3b2b773a5 Mon Sep 17 00:00:00 2001 From: Michael Becker Date: Mon, 7 Oct 2019 18:46:20 -0400 Subject: [PATCH] We don't really need these comments --- CSharp/Libraries/UniversalEditor.UserInterface/MainWindow.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/CSharp/Libraries/UniversalEditor.UserInterface/MainWindow.cs b/CSharp/Libraries/UniversalEditor.UserInterface/MainWindow.cs index 3cbb8adc..b3827e4c 100644 --- a/CSharp/Libraries/UniversalEditor.UserInterface/MainWindow.cs +++ b/CSharp/Libraries/UniversalEditor.UserInterface/MainWindow.cs @@ -291,7 +291,6 @@ namespace UniversalEditor.UserInterface foreach (Command cmd in _editorScopedCommands) { - Console.WriteLine("unregistering temporary (editor-scoped) command '{0}'", cmd.ID); Application.Commands.Remove(cmd); } _editorScopedCommands.Clear(); @@ -305,7 +304,6 @@ namespace UniversalEditor.UserInterface EditorReference er = editor.MakeReference(); foreach (Command cmd in er.Commands) { - Console.WriteLine("registering temporary (editor-scoped) command '{0}'", cmd.ID); Application.Commands.Add(cmd); _editorScopedCommands.Add(cmd); }