Skip to content

Commit

Permalink
Cleaned a few data-gen classes
Browse files Browse the repository at this point in the history
Signed-off-by: Jingy <[email protected]>
  • Loading branch information
Jiingy committed Nov 9, 2023
1 parent d3bebbe commit 742bffd
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,6 @@
import net.minecraft.recipe.book.RecipeCategory;

public class JinericGeneratedRecipes extends JinericRecipeProviders {
private static final RecipeCategory CATEGORY_BUILDING = RecipeCategory.BUILDING_BLOCKS;
private static final RecipeCategory MISC = RecipeCategory.MISC;
private static final CookingRecipeCategory COOKING_BLOCKS = CookingRecipeCategory.BLOCKS;
private static final CookingRecipeCategory COOKING_MISC = CookingRecipeCategory.MISC;

public JinericGeneratedRecipes(FabricDataOutput output) {
super(output);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,11 @@
import net.fabricmc.fabric.api.datagen.v1.provider.FabricTagProvider;
import net.minecraft.registry.RegistryWrapper;
import net.minecraft.registry.tag.ItemTags;
import org.jetbrains.annotations.Nullable;

import java.util.concurrent.CompletableFuture;

public class JinericItemTagGenerator extends FabricTagProvider.ItemTagProvider {

public JinericItemTagGenerator(FabricDataOutput output, CompletableFuture<RegistryWrapper.WrapperLookup> completableFuture, @Nullable BlockTagProvider blockTagProvider) {
super(output, completableFuture, blockTagProvider);
}

public JinericItemTagGenerator(FabricDataOutput output, CompletableFuture<RegistryWrapper.WrapperLookup> completableFuture) {
super(output, completableFuture);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@

//TODO: Move builder methods to it's own class
public class JinericModelGenerator extends FabricModelProvider {
private static Block planksTexture;

public JinericModelGenerator(FabricDataOutput output) {
super(output);
Expand Down

0 comments on commit 742bffd

Please sign in to comment.