We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f96daa2 commit f281ac0Copy full SHA for f281ac0
lesson_15/tdd/tdd_app/src/main/java/com/codedifferently/lesson15/Employee.java
@@ -46,10 +46,6 @@ public void setSalary(double salary) {
46
this.salary = salary;
47
}
48
49
- public void details(){
50
- System.out.println(getDetails());
51
- }
52
-
53
public String getDetails(){
54
return "The employee, " +name+ " in " +department+ " with the ID of " +id+ " has a salary of " +salary+ " .";
55
0 commit comments