Skip to content

Commit

Permalink
Remove unnecessary mixin constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
62832 committed May 21, 2024
1 parent e4b2838 commit f1017ab
Showing 1 changed file with 1 addition and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,12 @@
import org.spongepowered.asm.mixin.Mixin;
import org.spongepowered.asm.mixin.Shadow;

import appeng.api.parts.IPartItem;
import appeng.parts.AEBasePart;

import gripe._90.aecapfix.AECapFix;
import gripe._90.appliede.me.misc.EMCInterfaceLogic;
import gripe._90.appliede.part.EMCInterfacePart;

@Mixin(EMCInterfacePart.class)
public abstract class EMCInterfacePartMixin extends AEBasePart implements AECapFix.Invalidator {
public EMCInterfacePartMixin(IPartItem<?> partItem) {
super(partItem);
}

public abstract class EMCInterfacePartMixin implements AECapFix.Invalidator {
@Shadow(remap = false)
public abstract EMCInterfaceLogic getInterfaceLogic();

Expand Down

0 comments on commit f1017ab

Please sign in to comment.