Unnecessary modifier in interfaces
This commit is contained in:
@@ -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 );
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user