static finals need to be capitalized

This commit is contained in:
way2muchnoise
2016-10-17 21:00:09 +02:00
parent bc98808ad2
commit 3bf55346fe

View File

@@ -26,7 +26,7 @@ import java.util.*;
import java.util.stream.Collectors; import java.util.stream.Collectors;
public class CraftingTask implements ICraftingTask { public class CraftingTask implements ICraftingTask {
private static final int defaultCompare = IComparer.COMPARE_DAMAGE | IComparer.COMPARE_NBT; private static final int DEFAULT_COMPARE = IComparer.COMPARE_DAMAGE | IComparer.COMPARE_NBT;
private INetworkMaster network; private INetworkMaster network;
private ItemStack requested; private ItemStack requested;
@@ -75,7 +75,7 @@ public class CraftingTask implements ICraftingTask {
return; return;
} }
int compare = defaultCompare | (pattern.isOredict() ? IComparer.COMPARE_OREDICT : 0); int compare = DEFAULT_COMPARE | (pattern.isOredict() ? IComparer.COMPARE_OREDICT : 0);
ItemStack[] took = new ItemStack[9]; ItemStack[] took = new ItemStack[9];
if (pattern.isProcessing()) { if (pattern.isProcessing()) {
@@ -212,7 +212,7 @@ public class CraftingTask implements ICraftingTask {
IItemHandler inventory = processable.getPattern().getContainer().getFacingInventory(); IItemHandler inventory = processable.getPattern().getContainer().getFacingInventory();
if (inventory != null && !processable.getToInsert().isEmpty()) { if (inventory != null && !processable.getToInsert().isEmpty()) {
ItemStack toInsert = network.extractItem(processable.getToInsert().peek(), 1, defaultCompare | (pattern.isOredict() ? IComparer.COMPARE_OREDICT : 0)); ItemStack toInsert = network.extractItem(processable.getToInsert().peek(), 1, DEFAULT_COMPARE | (pattern.isOredict() ? IComparer.COMPARE_OREDICT : 0));
if (ItemHandlerHelper.insertItem(inventory, toInsert, true) == null) { if (ItemHandlerHelper.insertItem(inventory, toInsert, true) == null) {
ItemHandlerHelper.insertItem(inventory, toInsert, false); ItemHandlerHelper.insertItem(inventory, toInsert, false);