remove trailing whitespaces

This commit is contained in:
yueh
2015-02-03 12:04:13 +01:00
parent ef3cb0a455
commit b18addbf37
303 changed files with 1526 additions and 1526 deletions
@@ -17,7 +17,7 @@
*/
/**
*
*
*/
package appeng.client.gui.implementations;
@@ -59,7 +59,7 @@ public class GuiInscriber extends AEBaseGui
this.pb.yPosition = 39 + this.guiTop;
this.drawTexturedModalRect( offsetX, offsetY, 0, 0, 211 - 34, this.ySize );
if ( this.drawUpgrades() )
this.drawTexturedModalRect( offsetX + 177, offsetY, 177, 0, 35, 14 + this.cvc.availableUpgrades() * 18 );
if ( this.hasToolbox() )
@@ -347,7 +347,7 @@ public class GuiInterfaceTerminal extends AEBaseGui
*
* If this cache should be empty, it will populate it with an earlier cache if available or at least the cache for
* the empty string.
*
*
* @param searchTerm
* the corresponding search
* @return a Set matching a superset of the search term
@@ -40,7 +40,7 @@ public class GuiSecurity extends GuiMEMonitorable
super( inventoryPlayer, te, new ContainerSecurity( inventoryPlayer, te ) );
this.customSortOrder = false;
this.reservedSpace = 33;
// increase size so that the slot is over the gui.
this.xSize += 56;
this.standardSize = this.xSize;
@@ -24,9 +24,9 @@ import net.minecraft.client.gui.GuiTextField;
public class GuiNumberBox extends GuiTextField
{
final Class type;
public GuiNumberBox(FontRenderer p_i1032_1_, int p_i1032_2_, int p_i1032_3_, int p_i1032_4_, int p_i1032_5_,Class type) {
super( p_i1032_1_, p_i1032_2_, p_i1032_3_, p_i1032_4_, p_i1032_5_ );
this.type = type;
@@ -37,7 +37,7 @@ public class GuiNumberBox extends GuiTextField
{
String original = this.getText();
super.writeText( p_146191_1_ );
try
{
if ( this.type == int.class || this.type == Integer.class )
@@ -52,6 +52,6 @@ public class GuiNumberBox extends GuiTextField
this.setText( original );
}
}
}
@@ -20,42 +20,42 @@ package appeng.client.gui.widgets;
/**
* AEBaseGui controlled Tooltip Interface.
*
*
*/
public interface ITooltip
{
/**
* returns the tooltip message.
*
*
* @return tooltip message
*/
String getMessage();
/**
* x Location for the object that triggers the tooltip.
*
*
* @return xPosition
*/
int xPos();
/**
* y Location for the object that triggers the tooltip.
*
*
* @return yPosition
*/
int yPos();
/**
* Width of the object that triggers the tooltip.
*
*
* @return width
*/
int getWidth();
/**
* Height for the object that triggers the tooltip.
*
*
* @return height
*/
int getHeight();
@@ -108,9 +108,9 @@ public class SpatialSkyRender extends IRenderHandler
}
GL11.glDepthMask(true);
if ( fade > 0.0f )
{
{
GL11.glDisable( GL11.GL_FOG );
GL11.glDisable( GL11.GL_ALPHA_TEST );
GL11.glEnable( GL11.GL_BLEND );
@@ -128,7 +128,7 @@ public class SpatialSkyRender extends IRenderHandler
}
GL11.glPopAttrib();
GL11.glColor4f(1.0f, 1.0f, 1.0f, 1.0f);
}
@@ -273,7 +273,7 @@ public class RenderBlockAssembler extends BaseBlockRender implements IBoxProvide
return true;
}
@Override
public void getBoxes(IPartCollisionHelper bch)
{
@@ -101,7 +101,7 @@ public class RenderMEChest extends BaseBlockRender
/*
* 1.7.2
*
*
* else if ( forward == ForgeDirection.EAST && up == ForgeDirection.UP ) flippableIcon.setFlip( true, false ); else if (
* forward == ForgeDirection.NORTH && up == ForgeDirection.UP ) flippableIcon.setFlip( true, false );
*/
@@ -29,10 +29,10 @@ public class FullIcon implements IIcon
private final IIcon p;
public FullIcon(IIcon o) {
if ( o == null )
throw new RuntimeException("Cannot create a wrapper icon with a null icon.");
this.p = o;
}
@@ -32,10 +32,10 @@ public class OffsetIcon implements IIcon
private final IIcon p;
public OffsetIcon(IIcon o, float x, float y) {
if ( o == null )
throw new RuntimeException("Cannot create a wrapper icon with a null icon.");
this.p = o;
this.offsetX = x;
this.offsetY = y;
@@ -31,10 +31,10 @@ public class TaughtIcon implements IIcon
private final IIcon p;
public TaughtIcon(IIcon o, float tightness) {
if ( o == null )
throw new RuntimeException("Cannot create a wrapper icon with a null icon.");
this.p = o;
this.tightness = tightness * 0.4f;
}