From bd4d34fa2ae266dde643a9bd7ac832abcef8604a Mon Sep 17 00:00:00 2001 From: Gregory Rudolph Date: Mon, 2 Aug 2021 15:41:34 -0400 Subject: [PATCH] Remove Console.WriteLine() --- Posting.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/Posting.cs b/Posting.cs index 3c1977c..37581d5 100644 --- a/Posting.cs +++ b/Posting.cs @@ -51,7 +51,6 @@ public class Posting MatchCollection matches = r.Matches(node.InnerHtml); this.DatePosted = DateTime.Parse(matches[0].Value); this.DateDue = DateTime.Parse(matches[1].Value); - Console.WriteLine($"Due: {this.DateDue}, posted: {this.DatePosted}"); foreach (HtmlNode link in htmlDoc.DocumentNode.SelectNodes("//span[@class=\"rightCol\"]")) { switch (i)