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
@@ -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();