Cleanup of unnecessary code

This commit is contained in:
2023-04-20 23:02:38 +02:00
parent d456275fc1
commit 2b252e2b06
9 changed files with 20 additions and 31 deletions

View File

@ -50,7 +50,7 @@ public class Pathfinder
if (currentNode.Equals(goalNode))
{
Console.WriteLine("Path found.");
this.pathResult = GetPath(goalNode, DateTime.Now - startCalc);
pathResult = GetPath(goalNode, DateTime.Now - startCalc);
return this;
}