Fix compile errors

This commit is contained in:
Raoul Van den Berge
2016-08-25 03:56:23 +02:00
parent 4af6f7386f
commit f65da8bf6b

View File

@@ -29,7 +29,7 @@ public final class RefinedStorageSerializers {
} }
@Override @Override
public List<ClientNode> read(PacketBuffer buf) throws IOException { public List<ClientNode> read(PacketBuffer buf) {
List<ClientNode> nodes = new ArrayList<>(); List<ClientNode> nodes = new ArrayList<>();
int size = buf.readInt(); int size = buf.readInt();
@@ -64,7 +64,7 @@ public final class RefinedStorageSerializers {
} }
@Override @Override
public List<ClientCraftingTask> read(PacketBuffer buf) throws IOException { public List<ClientCraftingTask> read(PacketBuffer buf) {
int size = buf.readInt(); int size = buf.readInt();
List<ClientCraftingTask> tasks = new ArrayList<>(); List<ClientCraftingTask> tasks = new ArrayList<>();