mirror of
https://github.com/FabricMC/fabric.git
synced 2025-04-03 10:39:57 -04:00
Fix javadoc issues in data generation API
Partial cherry-pick from #2526, leaving only the parts affecting data generation. Co-authored-by: apple502j <33279053+apple502j@users.noreply.github.com>
This commit is contained in:
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
|
@ -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);
|
||||
|
||||
|
|
|
@ -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);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue