Skip to content

Commit 3cc4ce5

Browse files
committed
Fix code format
1 parent 2c958bf commit 3cc4ce5

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

common/src/main/java/juuxel/adorn/recipe/FluidBrewingRecipe.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,9 @@
1818
import java.util.List;
1919
import java.util.Optional;
2020

21-
import static juuxel.adorn.block.entity.BrewerBlockEntity.*;
21+
import static juuxel.adorn.block.entity.BrewerBlockEntity.INPUT_SLOT;
22+
import static juuxel.adorn.block.entity.BrewerBlockEntity.LEFT_INGREDIENT_SLOT;
23+
import static juuxel.adorn.block.entity.BrewerBlockEntity.RIGHT_INGREDIENT_SLOT;
2224

2325
public record FluidBrewingRecipe(Ingredient input, Ingredient firstIngredient, Optional<Ingredient> secondIngredient, FluidIngredient fluid, ItemStack result) implements BrewingRecipe {
2426
public static final MapCodec<FluidBrewingRecipe> CODEC = RecordCodecBuilder.mapCodec(builder -> builder.group(

common/src/main/java/juuxel/adorn/recipe/ItemBrewingRecipe.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@
1717
import java.util.List;
1818
import java.util.Optional;
1919

20-
import static juuxel.adorn.block.entity.BrewerBlockEntity.*;
20+
import static juuxel.adorn.block.entity.BrewerBlockEntity.INPUT_SLOT;
21+
import static juuxel.adorn.block.entity.BrewerBlockEntity.LEFT_INGREDIENT_SLOT;
22+
import static juuxel.adorn.block.entity.BrewerBlockEntity.RIGHT_INGREDIENT_SLOT;
2123

2224
public record ItemBrewingRecipe(Ingredient input, Ingredient firstIngredient, Optional<Ingredient> secondIngredient, ItemStack result) implements BrewingRecipe {
2325
public static final MapCodec<ItemBrewingRecipe> CODEC = RecordCodecBuilder.mapCodec(builder -> builder.group(

0 commit comments

Comments
 (0)