Skip to content

Commit

Permalink
Removed this. from getters
Browse files Browse the repository at this point in the history
  • Loading branch information
StarSNG25 committed Feb 27, 2024
1 parent fbaae43 commit 589ec5b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/main/java/com/starsng/sng_arsenal/item/ModTiers.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,36 +35,36 @@ public enum ModTiers implements Tier
@Override
public int getUses()
{
return this.uses;
return uses;
}

@Override
public float getSpeed()
{
return this.speed;
return speed;
}

@Override
public float getAttackDamageBonus()
{
return this.damage;
return damage;
}

@Override
public int getLevel()
{
return this.level;
return level;
}

@Override
public int getEnchantmentValue()
{
return this.enchantmentValue;
return enchantmentValue;
}

@Override
public Ingredient getRepairIngredient()
{
return this.repairIngredient.get();
return repairIngredient.get();
}
}

0 comments on commit 589ec5b

Please sign in to comment.