Removed Debug output

This commit is contained in:
Rich
2014-11-10 13:06:32 +00:00
parent d90e472f23
commit a711691ff6
4 changed files with 6 additions and 6 deletions

View File

@@ -399,8 +399,8 @@ namespace Volian.Controls.Library
}
private Match FirstMatch(string text, string replaceWord2)
{
if(text.Contains(replaceWord2.Replace("(","").Replace(")","").Replace(@"\\",@"\")))
Console.WriteLine("here");
//if(text.Contains(replaceWord2.Replace("(","").Replace(")","").Replace(@"\\",@"\")))
// Console.WriteLine("here");
MatchCollection matches = Regex.Matches(text, replaceWord2, RegexOptions.IgnoreCase);
if (matches.Count > 0)
{

View File

@@ -1311,7 +1311,7 @@ namespace Volian.Controls.Library
}
private void tv_RemoveChgIds()
{
Console.WriteLine("HERE"); // add code/query to clear change ids in config.
//Console.WriteLine("HERE"); // add code/query to clear change ids in config.
}
private Dictionary<int, int> MyCheckedOutDocVersions;
private void CheckOutDocVersion(VETreeNode tn)