Added missing @Override annotations with Eclipse

This commit is contained in:
Andrew
2014-09-28 11:34:00 -07:00
parent b6273d9c0c
commit 8514e32f5f
92 changed files with 197 additions and 1 deletions
@@ -29,6 +29,7 @@ public class FacadeContainer implements IFacadeContainer
storage = cbs;
}
@Override
public void writeToStream(ByteBuf out) throws IOException
{
int facadeSides = 0;
@@ -52,6 +53,7 @@ public class FacadeContainer implements IFacadeContainer
}
}
@Override
public boolean readFromStream(ByteBuf out) throws IOException
{
int facadeSides = out.readByte();
@@ -97,6 +99,7 @@ public class FacadeContainer implements IFacadeContainer
return changed;
}
@Override
public void readFromNBT(NBTTagCompound c)
{
for (int x = 0; x < facades; x++)
@@ -126,6 +129,7 @@ public class FacadeContainer implements IFacadeContainer
}
}
@Override
public void writeToNBT(NBTTagCompound c)
{
for (int x = 0; x < facades; x++)
@@ -170,6 +174,7 @@ public class FacadeContainer implements IFacadeContainer
return storage.getFacade( s.ordinal() );
}
@Override
public boolean isEmpty()
{
for (int x = 0; x < facades; x++)
@@ -178,6 +183,7 @@ public class FacadeContainer implements IFacadeContainer
return true;
}
@Override
public void rotateLeft()
{
IFacadePart newFacades[] = new FacadePart[6];