From 5e2eccadbd91171c01cdb209d1338bcfb7786b1c Mon Sep 17 00:00:00 2001 From: shedaniel Date: Thu, 2 Jan 2020 14:31:16 +0800 Subject: 3.3 Fix #58 Close #134 Close #158 Fix #227 --- src/main/java/me/shedaniel/rei/api/REIPluginEntry.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/main/java/me/shedaniel/rei/api/REIPluginEntry.java') diff --git a/src/main/java/me/shedaniel/rei/api/REIPluginEntry.java b/src/main/java/me/shedaniel/rei/api/REIPluginEntry.java index a5b1dc33b..cdc5574cf 100644 --- a/src/main/java/me/shedaniel/rei/api/REIPluginEntry.java +++ b/src/main/java/me/shedaniel/rei/api/REIPluginEntry.java @@ -13,11 +13,11 @@ import net.minecraft.util.Identifier; * Get base class of a REI plugin. */ public interface REIPluginEntry { - + default SemanticVersion getMinimumVersion() throws VersionParsingException { return null; } - + /** * Gets the priority of the plugin. * @@ -26,12 +26,12 @@ public interface REIPluginEntry { default int getPriority() { return 0; } - + /** * Get the identifier of the plugin * * @return the identifier */ Identifier getPluginIdentifier(); - + } -- cgit