no message

This commit is contained in:
overtake 2020-06-02 21:49:07 +03:00
parent 9466cc72f6
commit dadc9ffff1

View File

@ -17,8 +17,12 @@ public struct WrappedMediaResourceId: Hashable {
return lhs.id.isEqual(to: rhs.id) return lhs.id.isEqual(to: rhs.id)
} }
public var hashValue: Int { // public var hashValue: Int {
return self.id.hashValue // return self.id.hashValue
// }
public func hash(into hasher: inout Hasher) {
hasher.combine(id.hashValue)
} }
} }