aboutsummaryrefslogtreecommitdiff
path: root/RoughlyEnoughItems-api/src/main/java/me/shedaniel/rei/api/REIPluginEntry.java
diff options
context:
space:
mode:
authorshedaniel <daniel@shedaniel.me>2020-12-11 20:24:47 +0800
committershedaniel <daniel@shedaniel.me>2020-12-11 20:24:47 +0800
commit90b8a8181eb7e642fb88832f8bd8baa3acdcf804 (patch)
tree85774b5a26be6a8303f99c5316aee320a737ffc8 /RoughlyEnoughItems-api/src/main/java/me/shedaniel/rei/api/REIPluginEntry.java
parent14edd7e3f9e3716ff60e9d918760049c1313a485 (diff)
downloadRoughlyEnoughItems-90b8a8181eb7e642fb88832f8bd8baa3acdcf804.tar.gz
RoughlyEnoughItems-90b8a8181eb7e642fb88832f8bd8baa3acdcf804.tar.bz2
RoughlyEnoughItems-90b8a8181eb7e642fb88832f8bd8baa3acdcf804.zip
Remove deprecated classes
Signed-off-by: shedaniel <daniel@shedaniel.me>
Diffstat (limited to 'RoughlyEnoughItems-api/src/main/java/me/shedaniel/rei/api/REIPluginEntry.java')
-rw-r--r--RoughlyEnoughItems-api/src/main/java/me/shedaniel/rei/api/REIPluginEntry.java14
1 files changed, 0 insertions, 14 deletions
diff --git a/RoughlyEnoughItems-api/src/main/java/me/shedaniel/rei/api/REIPluginEntry.java b/RoughlyEnoughItems-api/src/main/java/me/shedaniel/rei/api/REIPluginEntry.java
index 6bf43e5a5..3285898f2 100644
--- a/RoughlyEnoughItems-api/src/main/java/me/shedaniel/rei/api/REIPluginEntry.java
+++ b/RoughlyEnoughItems-api/src/main/java/me/shedaniel/rei/api/REIPluginEntry.java
@@ -23,26 +23,12 @@
package me.shedaniel.rei.api;
-import net.fabricmc.loader.api.SemanticVersion;
-import net.fabricmc.loader.util.version.VersionParsingException;
import net.minecraft.resources.ResourceLocation;
-import org.jetbrains.annotations.ApiStatus;
/**
* Get base class of a REI plugin.
*/
public interface REIPluginEntry {
-
- /**
- * @return the minimum version for the REI plugin to load
- * @deprecated deprecated due to the lack of need of this method, please declare conflicts with fabric.mod.json
- */
- @ApiStatus.ScheduledForRemoval
- @Deprecated
- default SemanticVersion getMinimumVersion() throws VersionParsingException {
- return null;
- }
-
/**
* @return the priority of the plugin, the smaller the number, the earlier it is called.
*/