Remove Console.WriteLine()

This commit is contained in:
2021-08-02 15:41:34 -04:00
parent b4ee172575
commit bd4d34fa2a

View File

@ -51,7 +51,6 @@ public class Posting
MatchCollection matches = r.Matches(node.InnerHtml); MatchCollection matches = r.Matches(node.InnerHtml);
this.DatePosted = DateTime.Parse(matches[0].Value); this.DatePosted = DateTime.Parse(matches[0].Value);
this.DateDue = DateTime.Parse(matches[1].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\"]")) foreach (HtmlNode link in htmlDoc.DocumentNode.SelectNodes("//span[@class=\"rightCol\"]"))
{ {
switch (i) switch (i)