Auto format

This commit is contained in:
modmuss50 2016-11-25 13:25:51 +00:00
parent aceeb7a037
commit e16c3eba02
55 changed files with 128 additions and 182 deletions

View file

@ -79,7 +79,9 @@ public class OreDictUtils {
return isOre(new ItemStack(item), oreName);
}
public static boolean isOre(@Nonnull ItemStack stack, String oreName) {
public static boolean isOre(
@Nonnull
ItemStack stack, String oreName) {
if (stack != ItemStack.EMPTY && !stack.isEmpty() && oreName != null) {
int id = OreDictionary.getOreID(oreName);
int[] ids = OreDictionary.getOreIDs(stack);