summaryrefslogtreecommitdiffstats
path: root/nms-patches/Packet.patch
blob: 7009404ea71350e78003178657372d9ee975866c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
@@ -2,9 +2,9 @@
 
 public interface Packet {
 
-    void a(PacketDataSerializer packetdataserializer);
+    void a(PacketDataSerializer packetdataserializer) throws java.io.IOException; // CraftBukkit - added throws
 
-    void b(PacketDataSerializer packetdataserializer);
+    void b(PacketDataSerializer packetdataserializer) throws java.io.IOException; // CraftBukkit - added throws
 
     void a(PacketListener packetlistener);
 }