Updated indentation and refactored code

This commit is contained in:
Kiran 2016-10-09 13:52:52 -04:00 committed by GitHub
parent 2010fd9a87
commit d98924b39d
1 changed files with 1 additions and 1 deletions

View File

@ -18,6 +18,6 @@ public class Employee {
} }
public String toString() { public String toString() {
return "Person: name(" + name + "), age(" + age + ")"; return "Employee: name(" + name + "), age(" + age + ")";
} }
} }