From 55f64675b42ac8d3c557cc850f78664bee006f6f Mon Sep 17 00:00:00 2001 From: Jason Mitchell Date: Sat, 28 Jan 2023 19:32:44 -0800 Subject: [ci skip] spotlessApply with the new settings --- .../xmod/reliquary/util/AlkahestRecipeWrapper.java | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) (limited to 'src/main/java/gtPlusPlus/xmod/reliquary/util/AlkahestRecipeWrapper.java') diff --git a/src/main/java/gtPlusPlus/xmod/reliquary/util/AlkahestRecipeWrapper.java b/src/main/java/gtPlusPlus/xmod/reliquary/util/AlkahestRecipeWrapper.java index 1418a8d086..2209afddc7 100644 --- a/src/main/java/gtPlusPlus/xmod/reliquary/util/AlkahestRecipeWrapper.java +++ b/src/main/java/gtPlusPlus/xmod/reliquary/util/AlkahestRecipeWrapper.java @@ -1,11 +1,14 @@ package gtPlusPlus.xmod.reliquary.util; -import gtPlusPlus.core.util.reflect.ReflectionUtils; import java.lang.reflect.Constructor; import java.lang.reflect.InvocationTargetException; + import net.minecraft.item.ItemStack; +import gtPlusPlus.core.util.reflect.ReflectionUtils; + public class AlkahestRecipeWrapper { + public ItemStack item = null; public int yield = 0; public int cost = 0; @@ -39,12 +42,8 @@ public class AlkahestRecipeWrapper { return r; } - } catch (NoSuchMethodException - | SecurityException - | InstantiationException - | IllegalAccessException - | IllegalArgumentException - | InvocationTargetException e) { + } catch (NoSuchMethodException | SecurityException | InstantiationException | IllegalAccessException + | IllegalArgumentException | InvocationTargetException e) { // oops } return null; -- cgit