Another cleanup

This commit is contained in:
Aidan C. Brady 2014-11-16 01:00:41 -05:00
parent 607eb31316
commit 1b159d3242

View file

@ -776,44 +776,51 @@ public class PartLogisticalTransporter extends PartTransmitter<InventoryNetwork>
public class TransporterPipeProxy implements IPipe
{
@Override
public int x() {
public int x()
{
return PartLogisticalTransporter.this.x();
}
@Override
public int y() {
public int y()
{
return PartLogisticalTransporter.this.y();
}
@Override
public int z() {
public int z()
{
return PartLogisticalTransporter.this.y();
}
@Override
public IPipeTile getTile() {
public IPipeTile getTile()
{
return (IPipeTile)tile();
}
@Override
public IGate getGate(ForgeDirection side) {
public IGate getGate(ForgeDirection side)
{
return null;
}
@Override
public boolean hasGate(ForgeDirection side) {
public boolean hasGate(ForgeDirection side)
{
return false;
}
@Override
public boolean isWired(PipeWire wire) {
public boolean isWired(PipeWire wire)
{
return false;
}
@Override
public boolean isWireActive(PipeWire wire) {
public boolean isWireActive(PipeWire wire)
{
return false;
}
}