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

@ -41,8 +41,6 @@ public final class Student implements Serializable {
* @param grade as respective grade of student
*/
public Student(final int studentId, final String name, final char grade) {
super();
this.studentId = studentId;
this.name = name;
this.grade = grade;