Added spotless back and reformatted

This commit is contained in:
Sebastian Hartte
2020-07-27 20:07:27 +02:00
parent 49296915c9
commit 780f68952b
593 changed files with 4192 additions and 3969 deletions
@@ -1,17 +1,20 @@
package appeng.mixins;
import appeng.hooks.ItemRendererHooks;
import net.minecraft.client.render.item.ItemRenderer;
import net.minecraft.client.render.model.BakedModel;
import net.minecraft.item.ItemStack;
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.CallbackInfo;
import net.minecraft.client.render.item.ItemRenderer;
import net.minecraft.client.render.model.BakedModel;
import net.minecraft.item.ItemStack;
import appeng.hooks.ItemRendererHooks;
/**
* This mixin specifically targets rendering of items in the user interface to allow us to
* customize _only_ the UI representation of an item, and none of the others (held items, in-world, etc.)
* This mixin specifically targets rendering of items in the user interface to
* allow us to customize _only_ the UI representation of an item, and none of
* the others (held items, in-world, etc.)
*/
@Mixin(ItemRenderer.class)
public abstract class RenderEncodedPatternMixin {