From: David ‘Bombe’ Roden Date: Mon, 27 Sep 2021 12:34:26 +0000 (+0200) Subject: Fix incorrect comparison X-Git-Url: https://git.pterodactylus.net/?a=commitdiff_plain;ds=sidebyside;h=04f79f207d77abc1d28043fa22f4c4ad946dd1ae;hp=04f79f207d77abc1d28043fa22f4c4ad946dd1ae;p=Sone.git Fix incorrect comparison The result of Object.equals(Object) will _always_ be non-null because a primitive is always non-null. So once we use the correct method to check the result of the equals call everything will be fine. ---