Removing all redundant super constructor calls

This commit is contained in:
James Roland
2018-01-10 21:19:38 -08:00
parent 09c0891948
commit e9a541259b
7 changed files with 1 additions and 9 deletions

View File

@ -37,7 +37,6 @@ public class HeroStat {
// All constructors must be private.
private HeroStat(int strength, int intelligence, int luck) {
super();
this.strength = strength;
this.intelligence = intelligence;
this.luck = luck;