From 11029d87dd294bc53dd353636387702b6cefc5e5 Mon Sep 17 00:00:00 2001 From: Tim Young Date: Fri, 16 Jun 2017 13:17:25 -0500 Subject: [PATCH] remove debug print when loading rtf --- EduNetworkBuilder/RTFWindow.cs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/EduNetworkBuilder/RTFWindow.cs b/EduNetworkBuilder/RTFWindow.cs index ffd5efe..aae7c8f 100644 --- a/EduNetworkBuilder/RTFWindow.cs +++ b/EduNetworkBuilder/RTFWindow.cs @@ -117,15 +117,11 @@ namespace EduNetworkBuilder int posincompare = 0; bool Foundit = false; bool FoundPartMatch = false; - int posinfile = 0; using (var ms = new MemoryStream()) { var sw = new StreamWriter(ms); foreach (char c in What) { - posinfile++; - if (posinfile % 10000 == 0) - Console.WriteLine(" Place " + posinfile); if (Foundit) { if (c == '{') count++; @@ -184,7 +180,6 @@ namespace EduNetworkBuilder } } } - Console.WriteLine(" Place " + posinfile); sw.Flush(); ms.Position = 0; var sr = new StreamReader(ms);