Skip to content

Commit

Permalink
Removed unnecessary public modifiers from interface methods.
Browse files Browse the repository at this point in the history
  • Loading branch information
Phylogeny authored and AlgorithmX2 committed Aug 16, 2018
1 parent 5af52ac commit e5f2d5a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Expand Up @@ -174,7 +174,7 @@ IBitBag getBitbag(
* - refer to ParameterType for list of possible values.
* @return value of specified parameter.
*/
public <T extends Object> T getParameter(
<T extends Object> T getParameter(
ParameterType<T> which );

/**
Expand Down
Expand Up @@ -32,7 +32,7 @@ public interface IChiseledBlockTileEntity
* @param crossWorld
* @return modified input tag.
*/
public NBTTagCompound writeTileEntityToTag(
NBTTagCompound writeTileEntityToTag(
final NBTTagCompound tag,
final boolean crossWorld );

Expand Down
Expand Up @@ -19,7 +19,7 @@ public interface IChiselsAndBitsAddon
* @param api
* C&B Api Object
*/
public void onReadyChiselsAndBits(
void onReadyChiselsAndBits(
final IChiselAndBitsAPI api );

}

0 comments on commit e5f2d5a

Please sign in to comment.