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 e853c63 commit fb48cffCopy full SHA for fb48cff
lesson_15/tdd/tdd_app/src/main/java/com/codedifferently/lesson15/Employee.java
@@ -51,6 +51,13 @@ public boolean isEqualTo(int otherId) {
51
}
52
53
public String getDetails() {
54
- return "id: " + id + " name: " + name + " department: " + department + " salary: " + salary;
+ return "id: " + this.getId() + " name: " + this.getName() + " department: " + this.getDepartment() + " salary: " + this.getSalary();
55
+
56
57
58
59
+public void put(Employee employee) {
60
+ // TODO Auto-generated method stub
61
+ throw new UnsupportedOperationException("Unimplemented method 'put'");
62
+}
63
0 commit comments