Clean up some javadoc spam
Still need to figure out why delombok is priting an error for every non-BM import. It was apparently fixed in `gradle-lombok` 1.5 but it seems to have returned.
This commit is contained in:
parent
fe18be56fd
commit
126d17b55d
11 changed files with 175 additions and 177 deletions
|
@ -35,7 +35,7 @@ public abstract class LivingArmourUpgrade
|
|||
}
|
||||
|
||||
/**
|
||||
* Percentage of damage blocked. This stacks multiplicatively with other
|
||||
* Percentage of damage blocked. This stacks multiplicities with other
|
||||
* upgrades.
|
||||
*
|
||||
* @return 0 for no damage blocked, 1 for full damage blocked
|
||||
|
@ -54,9 +54,6 @@ public abstract class LivingArmourUpgrade
|
|||
|
||||
public abstract String getUnlocalizedName();
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public abstract int getMaxTier();
|
||||
|
||||
public abstract int getCostOfUpgrade();
|
||||
|
@ -67,7 +64,7 @@ public abstract class LivingArmourUpgrade
|
|||
|
||||
public Multimap<String, AttributeModifier> getAttributeModifiers()
|
||||
{
|
||||
return HashMultimap.<String, AttributeModifier>create();
|
||||
return HashMultimap.create();
|
||||
}
|
||||
|
||||
public abstract void writeToNBT(NBTTagCompound tag);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue