Fix javadoc issues in data generation API

Partial cherry-pick from , leaving only the parts affecting
data generation.

Co-authored-by: apple502j <33279053+apple502j@users.noreply.github.com>
This commit is contained in:
Juuz 2023-02-26 12:42:02 +02:00 committed by modmuss50
parent c16602cafa
commit 0690875101
2 changed files with 2 additions and 2 deletions
fabric-data-generation-api-v1/src/main/java/net/fabricmc/fabric/api/datagen/v1/provider

View file

@ -53,7 +53,7 @@ public abstract class FabricAdvancementProvider implements DataProvider {
/**
* Implement this method to register advancements to generate use the consumer callback to register advancements.
*
* <p>Use {@link Advancement.Task#build(Consumer, String)} to help build advancements.
* <p>Use {@link Advancement.Builder#build(Consumer, String)} to help build advancements.
*/
public abstract void generateAdvancement(Consumer<Advancement> consumer);

View file

@ -49,7 +49,7 @@ public abstract class FabricRecipeProvider extends RecipeProvider {
}
/**
* Implement this method and then use the range of methods in {@link RecipeProvider} or from one of the recipe json factories such as {@link ShapedRecipeJsonBuilder} & {@link ShapelessRecipeJsonBuilder}.
* Implement this method and then use the range of methods in {@link RecipeProvider} or from one of the recipe json factories such as {@link ShapedRecipeJsonBuilder} or {@link ShapelessRecipeJsonBuilder}.
*/
protected abstract void generateRecipes(Consumer<RecipeJsonProvider> exporter);