diff options
author | miozune <miozune@gmail.com> | 2023-09-09 23:26:57 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-09 16:26:57 +0200 |
commit | 6fffceea470bcede71582da257270ecfbbed27c6 (patch) | |
tree | 9be896efc15232b0610b57f05f39817e470fec95 /src/main/java/gregtech/loaders/oreprocessing/ProcessingLens.java | |
parent | 70ec7c6cb9dcd514c0de5626c7eb0c22aa91cb10 (diff) | |
download | GT5-Unofficial-6fffceea470bcede71582da257270ecfbbed27c6.tar.gz GT5-Unofficial-6fffceea470bcede71582da257270ecfbbed27c6.tar.bz2 GT5-Unofficial-6fffceea470bcede71582da257270ecfbbed27c6.zip |
Deprecate GT_RecipeBuilder#noXXXYYY methods (#2284)
* Deprecate GT_RecipeBuilder#noXXXYYY methods
* Remove existing references
Diffstat (limited to 'src/main/java/gregtech/loaders/oreprocessing/ProcessingLens.java')
-rw-r--r-- | src/main/java/gregtech/loaders/oreprocessing/ProcessingLens.java | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/src/main/java/gregtech/loaders/oreprocessing/ProcessingLens.java b/src/main/java/gregtech/loaders/oreprocessing/ProcessingLens.java index 23a88ae071..6b8d1cd67d 100644 --- a/src/main/java/gregtech/loaders/oreprocessing/ProcessingLens.java +++ b/src/main/java/gregtech/loaders/oreprocessing/ProcessingLens.java @@ -34,8 +34,6 @@ public class ProcessingLens implements gregtech.api.interfaces.IOreRecipeRegistr .itemOutputs( GT_OreDictUnificator.get(OrePrefixes.lens, aMaterial, 1L), GT_OreDictUnificator.get(OrePrefixes.dustSmall, aMaterial, 1L)) - .noFluidInputs() - .noFluidOutputs() .duration(1 * MINUTES) .eut(TierEU.RECIPE_LV) .addTo(sLatheRecipes); @@ -45,8 +43,6 @@ public class ProcessingLens implements gregtech.api.interfaces.IOreRecipeRegistr .itemOutputs( GT_OreDictUnificator.get(OrePrefixes.lens, aMaterial, 3L), GT_OreDictUnificator.get(OrePrefixes.dust, aMaterial, 1L)) - .noFluidInputs() - .noFluidOutputs() .duration(2 * MINUTES) .eut(16) .addTo(sLatheRecipes); @@ -55,8 +51,6 @@ public class ProcessingLens implements gregtech.api.interfaces.IOreRecipeRegistr GT_Values.RA.stdBuilder() .itemInputs(GT_OreDictUnificator.get(OrePrefixes.dust, aMaterial, 16L)) .itemOutputs(GT_OreDictUnificator.get(OrePrefixes.lens, aMaterial, 1L)) - .noFluidInputs() - .noFluidOutputs() .duration(10 * MINUTES) .eut(TierEU.RECIPE_UHV) .addTo(sCompressorRecipes); @@ -72,9 +66,7 @@ public class ProcessingLens implements gregtech.api.interfaces.IOreRecipeRegistr GT_OreDictUnificator.get(OrePrefixes.lens, aMaterial, 1L), GT_OreDictUnificator.get(OrePrefixes.dustSmall, aMaterial, 1L)); } - recipeBuilder.noFluidInputs() - .noFluidOutputs() - .duration(1 * MINUTES) + recipeBuilder.duration(1 * MINUTES) .eut(TierEU.RECIPE_MV) .addTo(sLatheRecipes); } @@ -88,9 +80,7 @@ public class ProcessingLens implements gregtech.api.interfaces.IOreRecipeRegistr GT_OreDictUnificator.get(OrePrefixes.lens, aMaterial, 1L), GT_OreDictUnificator.get(OrePrefixes.dust, aMaterial, 2L)); } - recipeBuilder.noFluidInputs() - .noFluidOutputs() - .duration(2 * MINUTES) + recipeBuilder.duration(2 * MINUTES) .eut(TierEU.RECIPE_LV) .addTo(sLatheRecipes); } |