(String title, String description, Priority priority)
| 35 | private Status status; |
| 36 | |
| 37 | public Task(String title, String description, Priority priority) { |
| 38 | this.title = title; |
| 39 | this.description = description; |
| 40 | this.priority = priority; |
| 41 | this.id = hashCode(); |
| 42 | } |
| 43 | |
| 44 | public Task(int id, String title, String description, Priority priority) { |
| 45 | this.title = title; |
nothing calls this directly
no outgoing calls
no test coverage detected