Interface cleanup
Specifying public in an interface is redundant.
This commit is contained in:
parent
76b3c14499
commit
f5d02b2807
10 changed files with 49 additions and 46 deletions
|
@ -10,7 +10,7 @@ import net.minecraft.item.ItemStack;
|
|||
*/
|
||||
public interface IUpgradeTrainer
|
||||
{
|
||||
public List<String> getTrainedUpgrades(ItemStack stack);
|
||||
List<String> getTrainedUpgrades(ItemStack stack);
|
||||
|
||||
public boolean setTrainedUpgrades(ItemStack stack, List<String> keys);
|
||||
boolean setTrainedUpgrades(ItemStack stack, List<String> keys);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue