Remove duplicate conformance

automatic conformance FTW!
This commit is contained in:
Nathan Mattes 2023-10-19 13:18:44 +02:00
parent 94c51eaed6
commit fb0758eac4
1 changed files with 0 additions and 20 deletions

View File

@ -1,20 +0,0 @@
//
// Mastodon+Entity+History.swift
// Mastodon
//
// Created by xiaojian sun on 2021/4/2.
//
import MastodonSDK
extension Mastodon.Entity.History: Hashable {
public func hash(into hasher: inout Hasher) {
hasher.combine(uses)
hasher.combine(accounts)
hasher.combine(day)
}
public static func == (lhs: Mastodon.Entity.History, rhs: Mastodon.Entity.History) -> Bool {
return lhs.uses == rhs.uses && lhs.uses == rhs.uses && lhs.day == rhs.day
}
}