diff options
author | nea <nea@nea.moe> | 2023-03-18 15:48:18 +0100 |
---|---|---|
committer | nea <nea@nea.moe> | 2023-03-18 15:48:18 +0100 |
commit | 75ac7c973fed68d371945b4252c614465614f9cb (patch) | |
tree | 3a84b7a7fe23c78ab070522d5f11ba935ae38afd | |
parent | 37beb6e2ff0bbfc72cdf30fb6f0dcdfc35b38911 (diff) | |
download | neurepoparsing-75ac7c973fed68d371945b4252c614465614f9cb.tar.gz neurepoparsing-75ac7c973fed68d371945b4252c614465614f9cb.tar.bz2 neurepoparsing-75ac7c973fed68d371945b4252c614465614f9cb.zip |
Add deprecation warning
-rw-r--r-- | src/main/java/io/github/moulberry/repo/data/NEURecipe.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main/java/io/github/moulberry/repo/data/NEURecipe.java b/src/main/java/io/github/moulberry/repo/data/NEURecipe.java index 28df4b7..b21dfde 100644 --- a/src/main/java/io/github/moulberry/repo/data/NEURecipe.java +++ b/src/main/java/io/github/moulberry/repo/data/NEURecipe.java @@ -6,6 +6,7 @@ public interface NEURecipe { /** * This is to be called once, after deserialization by the item that contains this recipe. This will be done * automatically by {@link NEUItem#getRecipes()}. + * This method is deprecated because it should only be called by the Repository itself, not consumers of this library. */ @Deprecated default void fillItemInfo(NEUItem item) { |