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