From a9aa406d298f7705bb9a5f7150ea5eee06540536 Mon Sep 17 00:00:00 2001 From: Dan Mulloy Date: Wed, 18 May 2016 20:48:59 -0400 Subject: [PATCH] Missing return statement Also, why is git showing whole-class diffs? Must be the dang line endings again --- .../com/comphenix/protocol/injector/packet/PacketRegistry.java | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/API/src/main/java/com/comphenix/protocol/injector/packet/PacketRegistry.java b/modules/API/src/main/java/com/comphenix/protocol/injector/packet/PacketRegistry.java index 979f5f87..ed5d7a61 100644 --- a/modules/API/src/main/java/com/comphenix/protocol/injector/packet/PacketRegistry.java +++ b/modules/API/src/main/java/com/comphenix/protocol/injector/packet/PacketRegistry.java @@ -62,6 +62,7 @@ public class PacketRegistry { if (NETTY == null) { throw new IllegalStateException("Failed to initialize packet registry."); } + return; } INITIALIZED = true;