aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/me/shedaniel/rei/api/REIPlugin.java
diff options
context:
space:
mode:
authorUnknown <shekwancheung0528@gmail.com>2019-06-14 22:10:42 +0800
committerUnknown <shekwancheung0528@gmail.com>2019-06-14 22:10:42 +0800
commit69a531030df74768d86025cd5668e0418a3c1f07 (patch)
treef128d5b07b0a8cfa8f02def50477ce8bfef4a50e /src/main/java/me/shedaniel/rei/api/REIPlugin.java
parent5c29f7917d71dc0042ee2b71a1f7ba4f4c347fde (diff)
downloadRoughlyEnoughItems-69a531030df74768d86025cd5668e0418a3c1f07.tar.gz
RoughlyEnoughItems-69a531030df74768d86025cd5668e0418a3c1f07.tar.bz2
RoughlyEnoughItems-69a531030df74768d86025cd5668e0418a3c1f07.zip
stuff
Diffstat (limited to 'src/main/java/me/shedaniel/rei/api/REIPlugin.java')
-rw-r--r--src/main/java/me/shedaniel/rei/api/REIPlugin.java21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/main/java/me/shedaniel/rei/api/REIPlugin.java b/src/main/java/me/shedaniel/rei/api/REIPlugin.java
deleted file mode 100644
index 77ee28d9d..000000000
--- a/src/main/java/me/shedaniel/rei/api/REIPlugin.java
+++ /dev/null
@@ -1,21 +0,0 @@
-/*
- * Roughly Enough Items by Danielshe.
- * Licensed under the MIT License.
- */
-
-package me.shedaniel.rei.api;
-
-import me.shedaniel.rei.RoughlyEnoughItemsCore;
-import net.minecraft.util.Identifier;
-
-/**
- * Get base class of a REI plugin.
- * This class has been replaced by {@link REIPluginEntry}
- */
-@Deprecated
-public interface REIPlugin extends REIPluginEntry {
- @Override
- default Identifier getPluginIdentifier() {
- return RoughlyEnoughItemsCore.getPluginIdentifier(this).orElse(Identifier.ofNullable("null"));
- }
-}