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