diff options
author | Techlone <techlone.mc@gmail.com> | 2017-06-02 22:18:29 +0500 |
---|---|---|
committer | Techlone <techlone.mc@gmail.com> | 2017-06-02 22:18:29 +0500 |
commit | c5402ee38998cc086ceb36fbce6c54aba6d9d79c (patch) | |
tree | b4703ef0db0138b0f8e0e35f136e76b90444dfee /src/main/java/gregtech/api/util | |
parent | 067f4491a812497f6bd013690cf9d8b13f8fc4b3 (diff) | |
download | GT5-Unofficial-c5402ee38998cc086ceb36fbce6c54aba6d9d79c.tar.gz GT5-Unofficial-c5402ee38998cc086ceb36fbce6c54aba6d9d79c.tar.bz2 GT5-Unofficial-c5402ee38998cc086ceb36fbce6c54aba6d9d79c.zip |
Some ODP fixes, energy checking, add radius in tooltip, add "missing pipes" message for II-IV tiers
change build.gradle for debugging in IDEA
Diffstat (limited to 'src/main/java/gregtech/api/util')
-rw-r--r-- | src/main/java/gregtech/api/util/GT_Utility.java | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/main/java/gregtech/api/util/GT_Utility.java b/src/main/java/gregtech/api/util/GT_Utility.java index 642fc5d9a4..076442e4f0 100644 --- a/src/main/java/gregtech/api/util/GT_Utility.java +++ b/src/main/java/gregtech/api/util/GT_Utility.java @@ -1971,11 +1971,6 @@ public class GT_Utility { return result; } - @SuppressWarnings("unchecked") - public static <T> T[] listToArray(List<T> list) { - return (T[]) list.toArray(); - } - public static class ItemNBT { public static void setNBT(ItemStack aStack, NBTTagCompound aNBT) { if (aNBT == null) { |