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

@ -31,7 +31,6 @@ public class Message {
// Parameter constructor.
public Message(String msg) {
super();
this.msg = msg;
}