aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/me
diff options
context:
space:
mode:
authorUnknown <shekwancheung0528@gmail.com>2019-06-18 16:39:51 +0800
committerUnknown <shekwancheung0528@gmail.com>2019-06-18 16:40:06 +0800
commit332747a3332eec2f2bff5696f79ef1e38161aa75 (patch)
treebb402cc09ef3a5b147cc45c083af15630758ec81 /src/main/java/me
parent4d0b2d3f50bf56b83498a3b787ac08afaeb85eff (diff)
downloadRoughlyEnoughItems-332747a3332eec2f2bff5696f79ef1e38161aa75.tar.gz
RoughlyEnoughItems-332747a3332eec2f2bff5696f79ef1e38161aa75.tar.bz2
RoughlyEnoughItems-332747a3332eec2f2bff5696f79ef1e38161aa75.zip
Added back licenses
Diffstat (limited to 'src/main/java/me')
-rw-r--r--src/main/java/me/shedaniel/rei/api/AutoCraftingHandler.java5
-rw-r--r--src/main/java/me/shedaniel/rei/listeners/AbstractInventoryScreenHooks.java5
-rw-r--r--src/main/java/me/shedaniel/rei/plugin/DefaultAutoCraftingPlugin.java5
-rw-r--r--src/main/java/me/shedaniel/rei/plugin/DefaultPotionEffectExclusionZones.java5
-rw-r--r--src/main/java/me/shedaniel/rei/plugin/DefaultRecipeBookExclusionZones.java5
-rw-r--r--src/main/java/me/shedaniel/rei/plugin/autocrafting/AutoCraftingTableHandler.java5
6 files changed, 30 insertions, 0 deletions
diff --git a/src/main/java/me/shedaniel/rei/api/AutoCraftingHandler.java b/src/main/java/me/shedaniel/rei/api/AutoCraftingHandler.java
index ec378ac89..fcd711bf4 100644
--- a/src/main/java/me/shedaniel/rei/api/AutoCraftingHandler.java
+++ b/src/main/java/me/shedaniel/rei/api/AutoCraftingHandler.java
@@ -1,3 +1,8 @@
+/*
+ * Roughly Enough Items by Danielshe.
+ * Licensed under the MIT License.
+ */
+
package me.shedaniel.rei.api;
import me.shedaniel.rei.gui.ContainerScreenOverlay;
diff --git a/src/main/java/me/shedaniel/rei/listeners/AbstractInventoryScreenHooks.java b/src/main/java/me/shedaniel/rei/listeners/AbstractInventoryScreenHooks.java
index abc9a3288..9ab9392db 100644
--- a/src/main/java/me/shedaniel/rei/listeners/AbstractInventoryScreenHooks.java
+++ b/src/main/java/me/shedaniel/rei/listeners/AbstractInventoryScreenHooks.java
@@ -1,3 +1,8 @@
+/*
+ * Roughly Enough Items by Danielshe.
+ * Licensed under the MIT License.
+ */
+
package me.shedaniel.rei.listeners;
import net.minecraft.client.gui.screen.ingame.AbstractInventoryScreen;
diff --git a/src/main/java/me/shedaniel/rei/plugin/DefaultAutoCraftingPlugin.java b/src/main/java/me/shedaniel/rei/plugin/DefaultAutoCraftingPlugin.java
index ff1711832..a1f085c46 100644
--- a/src/main/java/me/shedaniel/rei/plugin/DefaultAutoCraftingPlugin.java
+++ b/src/main/java/me/shedaniel/rei/plugin/DefaultAutoCraftingPlugin.java
@@ -1,3 +1,8 @@
+/*
+ * Roughly Enough Items by Danielshe.
+ * Licensed under the MIT License.
+ */
+
package me.shedaniel.rei.plugin;
import me.shedaniel.rei.RoughlyEnoughItemsCore;
diff --git a/src/main/java/me/shedaniel/rei/plugin/DefaultPotionEffectExclusionZones.java b/src/main/java/me/shedaniel/rei/plugin/DefaultPotionEffectExclusionZones.java
index 60df54dc0..29b150e72 100644
--- a/src/main/java/me/shedaniel/rei/plugin/DefaultPotionEffectExclusionZones.java
+++ b/src/main/java/me/shedaniel/rei/plugin/DefaultPotionEffectExclusionZones.java
@@ -1,3 +1,8 @@
+/*
+ * Roughly Enough Items by Danielshe.
+ * Licensed under the MIT License.
+ */
+
package me.shedaniel.rei.plugin;
import com.google.common.collect.Ordering;
diff --git a/src/main/java/me/shedaniel/rei/plugin/DefaultRecipeBookExclusionZones.java b/src/main/java/me/shedaniel/rei/plugin/DefaultRecipeBookExclusionZones.java
index ef7c9a07a..35da5ef24 100644
--- a/src/main/java/me/shedaniel/rei/plugin/DefaultRecipeBookExclusionZones.java
+++ b/src/main/java/me/shedaniel/rei/plugin/DefaultRecipeBookExclusionZones.java
@@ -1,3 +1,8 @@
+/*
+ * Roughly Enough Items by Danielshe.
+ * Licensed under the MIT License.
+ */
+
package me.shedaniel.rei.plugin;
import com.google.common.collect.Lists;
diff --git a/src/main/java/me/shedaniel/rei/plugin/autocrafting/AutoCraftingTableHandler.java b/src/main/java/me/shedaniel/rei/plugin/autocrafting/AutoCraftingTableHandler.java
index f33ee24fa..1b1142d76 100644
--- a/src/main/java/me/shedaniel/rei/plugin/autocrafting/AutoCraftingTableHandler.java
+++ b/src/main/java/me/shedaniel/rei/plugin/autocrafting/AutoCraftingTableHandler.java
@@ -1,3 +1,8 @@
+/*
+ * Roughly Enough Items by Danielshe.
+ * Licensed under the MIT License.
+ */
+
package me.shedaniel.rei.plugin.autocrafting;
import me.shedaniel.rei.api.AutoCraftingHandler;