#27 gardenplanmodelTest bugfixed

This commit is contained in:
Gian-Andrea Hutter
2022-11-08 23:11:38 +01:00
parent 60c6dcd0d9
commit 78a27499a8
2 changed files with 8 additions and 8 deletions
@@ -21,11 +21,11 @@ public class Task {
* default constructor
* (used by Json deserializer)
*/
public Task(long cropId){
public Task(){
name= "";
description= "";
startDate = LocalDate.now();
this.cropId = cropId;
//this.cropId = cropId;
}
public Task(String name, String description, LocalDate startDate, long cropId) {