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); }