1
Fork 0
mirror of https://github.com/Steffo99/patched-porobot.git synced 2024-10-16 17:47:29 +00:00

Do not implement PartialEq::ne for Card

This commit is contained in:
Steffo 2022-08-22 18:13:49 +02:00
parent 89a1eefd25
commit f3cc8a0910
Signed by: steffo
GPG key ID: 6965406171929D01

View file

@ -167,10 +167,6 @@ impl PartialEq for Card {
fn eq(&self, other: &Self) -> bool { fn eq(&self, other: &Self) -> bool {
self.code == other.code self.code == other.code
} }
fn ne(&self, other: &Self) -> bool {
self.code != other.code
}
} }