We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b78155 commit 2991804Copy full SHA for 2991804
src/Dijkstra.NET/Dijkstra.NET/Model/Node.cs
@@ -17,16 +17,5 @@ public Node(uint key, T item)
17
public uint Key { get; }
18
public T Item { get; }
19
public int Distance { get; set; }
20
-
21
- //public override int GetHashCode() => Key.GetHashCode();
22
- //public override bool Equals(object obj)
23
- //{
24
- // var that = obj as Node<T, TEdgeCustom>;
25
26
- // if (that == null || that.Key != Key)
27
- // return false;
28
29
- // return true;
30
- //}
31
}
32
0 commit comments