Fix hashCode for Client

This commit is contained in:
Mygod
2019-07-19 11:11:02 +08:00
parent 970ba2247b
commit e85890ecfb

View File

@@ -79,5 +79,5 @@ open class Client(val mac: Long, val iface: String) {
return true return true
} }
override fun hashCode() = Objects.hash(iface, mac, ip, record.value) override fun hashCode() = Objects.hash(iface, mac, ip)
} }