Added missing @Override annotations with Eclipse
This commit is contained in:
@@ -403,6 +403,7 @@ public class CableBusContainer extends CableBusStorage implements AEMultiTile, I
|
||||
partChanged();
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean canConnectRedstone(EnumSet<ForgeDirection> enumSet)
|
||||
{
|
||||
for (ForgeDirection dir : enumSet)
|
||||
@@ -463,6 +464,7 @@ public class CableBusContainer extends CableBusStorage implements AEMultiTile, I
|
||||
return boxes;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onEntityCollision(Entity entity)
|
||||
{
|
||||
for (ForgeDirection s : ForgeDirection.values())
|
||||
@@ -473,6 +475,7 @@ public class CableBusContainer extends CableBusStorage implements AEMultiTile, I
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isEmpty()
|
||||
{
|
||||
IFacadeContainer fc = getFacadeContainer();
|
||||
@@ -492,6 +495,7 @@ public class CableBusContainer extends CableBusStorage implements AEMultiTile, I
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onNeighborChanged()
|
||||
{
|
||||
hasRedstone = YesNo.UNDECIDED;
|
||||
@@ -510,6 +514,7 @@ public class CableBusContainer extends CableBusStorage implements AEMultiTile, I
|
||||
hasRedstone = te.getWorldObj().isBlockIndirectlyGettingPowered( te.xCoord, te.yCoord, te.zCoord ) ? YesNo.YES : YesNo.NO;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isSolidOnSide(ForgeDirection side)
|
||||
{
|
||||
if ( side == null || side == ForgeDirection.UNKNOWN )
|
||||
@@ -525,12 +530,14 @@ public class CableBusContainer extends CableBusStorage implements AEMultiTile, I
|
||||
return part != null && part.isSolid();
|
||||
}
|
||||
|
||||
@Override
|
||||
public int isProvidingWeakPower(ForgeDirection side)
|
||||
{
|
||||
IPart part = getPart( side );
|
||||
return part != null ? part.isProvidingWeakPower() : 0;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int isProvidingStrongPower(ForgeDirection side)
|
||||
{
|
||||
IPart part = getPart( side );
|
||||
@@ -813,6 +820,7 @@ public class CableBusContainer extends CableBusStorage implements AEMultiTile, I
|
||||
return tcb.isBlocked( side );
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getLightValue()
|
||||
{
|
||||
int light = 0;
|
||||
@@ -842,6 +850,7 @@ public class CableBusContainer extends CableBusStorage implements AEMultiTile, I
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean activate(EntityPlayer player, Vec3 pos)
|
||||
{
|
||||
SelectedPart p = selectPart( pos );
|
||||
@@ -936,6 +945,7 @@ public class CableBusContainer extends CableBusStorage implements AEMultiTile, I
|
||||
tcb.markForSave();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void randomDisplayTick(World world, int x, int y, int z, Random r)
|
||||
{
|
||||
for (ForgeDirection side : ForgeDirection.values())
|
||||
@@ -957,6 +967,7 @@ public class CableBusContainer extends CableBusStorage implements AEMultiTile, I
|
||||
return hasRedstone == YesNo.YES;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isLadder(EntityLivingBase entity)
|
||||
{
|
||||
for (ForgeDirection side : ForgeDirection.values())
|
||||
|
||||
Reference in New Issue
Block a user