Code cleanup
This commit is contained in:
@@ -1,12 +1,10 @@
|
|||||||
package com.garbagemule.MobArena.repairable;
|
package com.garbagemule.MobArena.repairable;
|
||||||
|
|
||||||
//import java.io.Serializable;
|
|
||||||
|
|
||||||
import org.bukkit.Material;
|
import org.bukkit.Material;
|
||||||
import org.bukkit.World;
|
import org.bukkit.World;
|
||||||
import org.bukkit.block.BlockState;
|
import org.bukkit.block.BlockState;
|
||||||
|
|
||||||
public interface Repairable// extends Serializable
|
public interface Repairable
|
||||||
{
|
{
|
||||||
public void repair();
|
public void repair();
|
||||||
|
|
||||||
|
|||||||
@@ -74,41 +74,4 @@ public class RepairableBlock implements Repairable
|
|||||||
{
|
{
|
||||||
return z;
|
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;
|
|
||||||
}
|
|
||||||
*/
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user