From 85106063c9fcc8e634215804c36b896498b60956 Mon Sep 17 00:00:00 2001 From: CharlesVaneenoo Date: Fri, 12 Feb 2016 15:11:33 +0100 Subject: [PATCH] Remove unused condition from NpcDefinitionDecoder --- .../src/main/org/apollo/cache/decoder/NpcDefinitionDecoder.java | 1 - 1 file changed, 1 deletion(-) diff --git a/cache/src/main/org/apollo/cache/decoder/NpcDefinitionDecoder.java b/cache/src/main/org/apollo/cache/decoder/NpcDefinitionDecoder.java index 89ddc8c3..aa5dfd20 100644 --- a/cache/src/main/org/apollo/cache/decoder/NpcDefinitionDecoder.java +++ b/cache/src/main/org/apollo/cache/decoder/NpcDefinitionDecoder.java @@ -132,7 +132,6 @@ public final class NpcDefinitionDecoder implements Runnable { int count = buffer.get() & 0xFF; int[] morphisms = new int[count + 1]; Arrays.setAll(morphisms, index -> wrap(buffer.getShort())); - } else if (opcode == 107) { } } }