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