Skip to content

Commit e515919

Browse files
committed
Update Vertex.swift
1 parent aeafa95 commit e515919

File tree

1 file changed

+4
-10
lines changed

1 file changed

+4
-10
lines changed

Graph/Graph/Vertex.swift

+4-10
Original file line numberDiff line numberDiff line change
@@ -24,16 +24,10 @@ extension Vertex: CustomStringConvertible {
2424

2525
extension Vertex: Hashable {
2626

27-
28-
29-
30-
public func hasher(into hasher: inout Hasher){
31-
32-
hasher.combine(data)
33-
hasher.combine(index)
34-
}
35-
36-
27+
public func hasher(into hasher: inout Hasher) {
28+
hasher.combine(data)
29+
hasher.combine(index)
30+
}
3731

3832
}
3933

0 commit comments

Comments
 (0)