Code cleanup

This commit is contained in:
Garbage Mule 2011-09-16 22:45:05 +02:00
parent 7d2c9c9240
commit f1433cfc88
2 changed files with 1 additions and 40 deletions

View File

@ -1,12 +1,10 @@
package com.garbagemule.MobArena.repairable;
//import java.io.Serializable;
import org.bukkit.Material;
import org.bukkit.World;
import org.bukkit.block.BlockState;
public interface Repairable// extends Serializable
public interface Repairable
{
public void repair();

View File

@ -74,41 +74,4 @@ public class RepairableBlock implements Repairable
{
return z;
}
/*
public void setWorld(World world)
{
this.world = world;
}
public void setType(Material type)
{
this.type = type;
}
public void setId(int id)
{
this.id = id;
}
public void setData(byte data)
{
this.data = data;
}
public void setX(int x)
{
this.x = x;
}
public void setY(int y)
{
this.y = y;
}
public void setZ(int z)
{
this.z = z;
}
*/
}