remove debug print when loading rtf

This commit is contained in:
Tim Young 2017-06-16 13:17:25 -05:00
parent e725a88bb1
commit 11029d87dd
1 changed files with 0 additions and 5 deletions

View File

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