From 90b8a8181eb7e642fb88832f8bd8baa3acdcf804 Mon Sep 17 00:00:00 2001 From: shedaniel Date: Fri, 11 Dec 2020 20:24:47 +0800 Subject: Remove deprecated classes Signed-off-by: shedaniel --- .../src/main/java/me/shedaniel/rei/api/REIPluginEntry.java | 14 -------------- 1 file changed, 14 deletions(-) (limited to 'RoughlyEnoughItems-api/src/main/java/me/shedaniel/rei/api/REIPluginEntry.java') 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. */ -- cgit