Merge pull request #14 from CovertJaguar/patch-2

Added throws clause to ISpawnHandler functions...
This commit is contained in:
LexManos 2012-03-17 01:09:33 -07:00
commit 10ee3b9e92
1 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@ public interface ISpawnHandler
* *
* @param data The packet data stream * @param data The packet data stream
*/ */
public void writeSpawnData(DataOutputStream data); public void writeSpawnData(DataOutputStream data) throws IOException;
/** /**
* Called by the client when it receives a Entity spawn packet. * Called by the client when it receives a Entity spawn packet.
@ -23,5 +23,5 @@ public interface ISpawnHandler
* *
* @param data The packet data stream * @param data The packet data stream
*/ */
public void readSpawnData(DataInputStream data); public void readSpawnData(DataInputStream data) throws IOException;
} }