Unnecessary modifier in interfaces

This commit is contained in:
thatsIch
2015-03-26 11:03:30 +01:00
parent 6aeca93b85
commit 14df50dbf3
32 changed files with 113 additions and 98 deletions
@@ -50,7 +50,7 @@ public interface IPathItem
*
* @return the flag set.
*/
public EnumSet<GridFlags> getFlags();
EnumSet<GridFlags> getFlags();
/**
* channels are done, wrap it up.
@@ -29,6 +29,6 @@ public interface ICompassCallback
* @param radians radians
* @param dist distance
*/
public void calculatedDirection(boolean hasResult, boolean spin, double radians, double dist);
void calculatedDirection( boolean hasResult, boolean spin, double radians, double dist );
}
@@ -23,6 +23,6 @@ import net.minecraft.item.ItemStack;
public interface IInventoryDestination
{
public boolean canInsert(ItemStack stack);
boolean canInsert( ItemStack stack );
}