From 6f89cf54b8187187172e970aec155979fee5c37f Mon Sep 17 00:00:00 2001 From: LexManos Date: Wed, 22 Aug 2012 18:03:10 -0700 Subject: [PATCH] Removed deprecated ISpawnHandler, that never worked in 1.3.2 so noone should be using it. See FML's replacement. --- .../minecraftforge/common/ISpawnHandler.java | 28 ------------------- 1 file changed, 28 deletions(-) delete mode 100644 common/net/minecraftforge/common/ISpawnHandler.java diff --git a/common/net/minecraftforge/common/ISpawnHandler.java b/common/net/minecraftforge/common/ISpawnHandler.java deleted file mode 100644 index c4e148fb3..000000000 --- a/common/net/minecraftforge/common/ISpawnHandler.java +++ /dev/null @@ -1,28 +0,0 @@ -package net.minecraftforge.common; - -import java.io.DataInputStream; -import java.io.DataOutputStream; -import java.io.IOException; - -/** - * A interface for Entities that need extra information to be communicated - * between the server and client when they are spawned. - */ -public interface ISpawnHandler -{ - /** - * Called by the server when constructing the spawn packet. - * Data should be added to the provided stream. - * - * @param data The packet data stream - */ - public void writeSpawnData(DataOutputStream data) throws IOException; - - /** - * Called by the client when it receives a Entity spawn packet. - * Data should be read out of the stream in the same way as it was written. - * - * @param data The packet data stream - */ - public void readSpawnData(DataInputStream data) throws IOException; -}