mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-25 09:34:44 +01:00
a419776f3c
For more information please see http://www.spigotmc.org/ By: Thinkofdeath <thinkofdeath@spigotmc.org>
14 lines
623 B
Diff
14 lines
623 B
Diff
--- ../work/decompile-bb26c12b/net/minecraft/server/Packet.java 2014-11-27 08:59:46.813421353 +1100
|
|
+++ src/main/java/net/minecraft/server/Packet.java 2014-11-27 08:42:10.152850911 +1100
|
|
@@ -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);
|
|
}
|