Skip to content

Commit

Permalink
remove unnecessary comments
Browse files Browse the repository at this point in the history
  • Loading branch information
matiii authored Mar 8, 2017
1 parent 4b78155 commit 2991804
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions src/Dijkstra.NET/Dijkstra.NET/Model/Node.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,5 @@ public Node(uint key, T item)
public uint Key { get; }
public T Item { get; }
public int Distance { get; set; }

//public override int GetHashCode() => Key.GetHashCode();
//public override bool Equals(object obj)
//{
// var that = obj as Node<T, TEdgeCustom>;

// if (that == null || that.Key != Key)
// return false;

// return true;
//}
}
}

0 comments on commit 2991804

Please sign in to comment.