Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Remove redundant explicit super()
Remove redundant explicit super() constructor calls [#694](#694)
  • Loading branch information
jonatasemidio authored Jan 5, 2018
commit 81379502f99d2fefb3de228619fdfee6f1bfe8f0
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down