mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-25 09:41:29 +01:00
a8ddf37419
By: GunfighterJ <joseph.jenniges@gmail.com>
13 lines
436 B
Diff
13 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);
|
|
}
|