PaperMC/paper-server/nms-patches/Packet.patch
CraftBukkit/Spigot a8ddf37419 Remove patch headers
By: GunfighterJ <joseph.jenniges@gmail.com>
2014-11-28 16:54:14 -06:00

12 lines
436 B
Diff

@@ -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);
}