Browse Source

Remove Console.WriteLine()

master
Gregory Rudolph 3 years ago
parent
commit
bd4d34fa2a
Signed by: rudi
GPG Key ID: EF64F3CBD1A1EBDD
  1. 1
      Posting.cs

1
Posting.cs

@ -51,7 +51,6 @@ public class Posting @@ -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)

Loading…
Cancel
Save