diff --git a/Graph/Graph/Vertex.swift b/Graph/Graph/Vertex.swift index f74b38396..48645f0fa 100644 --- a/Graph/Graph/Vertex.swift +++ b/Graph/Graph/Vertex.swift @@ -24,16 +24,10 @@ extension Vertex: CustomStringConvertible { extension Vertex: Hashable { - - - - public func hasher(into hasher: inout Hasher){ - - hasher.combine(data) - hasher.combine(index) - } - - + public func hasher(into hasher: inout Hasher) { + hasher.combine(data) + hasher.combine(index) + } }