From ad490f2ea7967cb6bb97cb797b33aa3554de46a5 Mon Sep 17 00:00:00 2001 From: nea Date: Sat, 28 Oct 2023 04:07:47 +0200 Subject: Rename mixins after what they do, rather than where they do it [no changelog] Mixins are now named after what they do, and mixins for the same class that do different things should be in two separate mixins now. --- .../moe/nea/firmament/mixins/MixinKeyBinding.java | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 src/main/java/moe/nea/firmament/mixins/MixinKeyBinding.java (limited to 'src/main/java/moe/nea/firmament/mixins/MixinKeyBinding.java') diff --git a/src/main/java/moe/nea/firmament/mixins/MixinKeyBinding.java b/src/main/java/moe/nea/firmament/mixins/MixinKeyBinding.java deleted file mode 100644 index f77caf5..0000000 --- a/src/main/java/moe/nea/firmament/mixins/MixinKeyBinding.java +++ /dev/null @@ -1,22 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2023 Linnea Gräf - * - * SPDX-License-Identifier: GPL-3.0-or-later - */ - -package moe.nea.firmament.mixins; - -import moe.nea.firmament.features.fixes.Fixes; -import net.minecraft.client.option.KeyBinding; -import org.spongepowered.asm.mixin.Mixin; -import org.spongepowered.asm.mixin.injection.At; -import org.spongepowered.asm.mixin.injection.Inject; -import org.spongepowered.asm.mixin.injection.callback.CallbackInfoReturnable; - -@Mixin(KeyBinding.class) -public class MixinKeyBinding { - @Inject(method = "isPressed", at = @At("HEAD"), cancellable = true) - public void onIsPressed(CallbackInfoReturnable cir) { - Fixes.INSTANCE.handleIsPressed((KeyBinding) (Object) this, cir); - } -} -- cgit