diff options
Diffstat (limited to 'src/main/java/me/shedaniel/rei/api/REIPluginEntry.java')
| -rw-r--r-- | src/main/java/me/shedaniel/rei/api/REIPluginEntry.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main/java/me/shedaniel/rei/api/REIPluginEntry.java b/src/main/java/me/shedaniel/rei/api/REIPluginEntry.java index cdc5574cf..a5b1dc33b 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(); - + } |
