Comment fixes

This commit is contained in:
Vindex 2016-01-01 10:34:17 +01:00
parent a2e77adbff
commit e8b4e6f2c0
11 changed files with 46 additions and 44 deletions

View file

@ -12,8 +12,11 @@ import com.google.common.collect.Multimap;
public abstract class LivingArmourUpgrade
{
protected int level = 0; // Upgrade level 0 is the first upgrade. Upgrade
// goes from 0 to getMaxTier() - 1.
/**
* Upgrade level 0 is the first upgrade. Upgrade goes from 0 to getMaxTier()
* - 1.
*/
protected int level = 0;
/**
* The LivingArmourUpgrade must have a constructor that has a single integer
@ -36,7 +39,6 @@ public abstract class LivingArmourUpgrade
public abstract String getUniqueIdentifier();
/**
*
* @return
*/
public abstract int getMaxTier();
@ -49,7 +51,7 @@ public abstract class LivingArmourUpgrade
public Multimap<String, AttributeModifier> getAttributeModifiers()
{
return HashMultimap.<String, AttributeModifier> create();
return HashMultimap.<String, AttributeModifier>create();
}
public abstract void writeToNBT(NBTTagCompound tag);