diff options
Diffstat (limited to 'src/main/java/gregtech/nei/NEIRecipeInfo.java')
-rw-r--r-- | src/main/java/gregtech/nei/NEIRecipeInfo.java | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/src/main/java/gregtech/nei/NEIRecipeInfo.java b/src/main/java/gregtech/nei/NEIRecipeInfo.java index e19ff6f2ba..ee8c38d3da 100644 --- a/src/main/java/gregtech/nei/NEIRecipeInfo.java +++ b/src/main/java/gregtech/nei/NEIRecipeInfo.java @@ -24,9 +24,8 @@ public class NEIRecipeInfo { public final GT_NEI_DefaultHandler.CachedDefaultRecipe neiCachedRecipe; /** - * When user looks up usage for machine, NEI will show all the recipes that the machine can process, - * taking tier of the machine into consideration. - * This object can be used to show info around overclocked EU/t and duration. + * When user looks up usage for machine, NEI will show all the recipes that the machine can process, taking tier of + * the machine into consideration. This object can be used to show info around overclocked EU/t and duration. */ public final Power power; @@ -35,12 +34,8 @@ public class NEIRecipeInfo { */ public int yPos; - public NEIRecipeInfo( - GT_Recipe recipe, - GT_Recipe.GT_Recipe_Map recipeMap, - GT_NEI_DefaultHandler.CachedDefaultRecipe neiCachedRecipe, - Power power, - int descriptionYOffset) { + public NEIRecipeInfo(GT_Recipe recipe, GT_Recipe.GT_Recipe_Map recipeMap, + GT_NEI_DefaultHandler.CachedDefaultRecipe neiCachedRecipe, Power power, int descriptionYOffset) { this.recipe = recipe; this.recipeMap = recipeMap; this.neiCachedRecipe = neiCachedRecipe; |