From b93a4c0978aa3be0b204fa8d40732578f2fb173e Mon Sep 17 00:00:00 2001 From: Michael Becker Date: Sat, 29 Aug 2020 18:40:31 -0400 Subject: [PATCH] I don't think we need these messages anymore --- Libraries/UniversalEditor.UserInterface/Dialogs/NewDialog.cs | 3 --- 1 file changed, 3 deletions(-) diff --git a/Libraries/UniversalEditor.UserInterface/Dialogs/NewDialog.cs b/Libraries/UniversalEditor.UserInterface/Dialogs/NewDialog.cs index 0ced68dc..bf143aae 100644 --- a/Libraries/UniversalEditor.UserInterface/Dialogs/NewDialog.cs +++ b/Libraries/UniversalEditor.UserInterface/Dialogs/NewDialog.cs @@ -117,7 +117,6 @@ namespace UniversalEditor.UserInterface.Dialogs List dts = (List)tn.GetExtraData>("dts", null); if (dts == null) { - Console.WriteLine("ue: templates debug: creating a new document template list for " + String.Join("/", dt.Path)); dts = new List(); tn.SetExtraData>("dts", dts); } @@ -216,7 +215,6 @@ namespace UniversalEditor.UserInterface.Dialogs List dts = (List)row.GetExtraData>("dts", null); if (dts == null) { - Console.WriteLine("ue: templates debug: creating a new document template list for " + String.Join("/", path)); dts = new List(); row.SetExtraData>("dts", dts); } @@ -458,7 +456,6 @@ namespace UniversalEditor.UserInterface.Dialogs List dts = (List)tn.GetExtraData>("dts", null); if (dts == null) { - Console.WriteLine("ue: templates debug: creating a new project template list for " + String.Join("/", dt.Path)); dts = new List(); tn.SetExtraData>("dts", dts); }