Revert "Fixup styling"
This reverts commit 72addaf8c354879197e0c252e4d8153cc54e0e2c.
This commit is contained in:
parent
a667a0191a
commit
dc3f7039cb
|
@ -26,4 +26,4 @@ public class AddNewDailyTask implements CreateTask {
|
|||
addNewTask.create(task);
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
|
|
|
@ -4,4 +4,4 @@ import com.baeldung.architecture.domain.task.Task;
|
|||
|
||||
public interface CreateTask {
|
||||
public void create(Task newTask);
|
||||
}
|
||||
};
|
||||
|
|
|
@ -4,4 +4,4 @@ import com.baeldung.architecture.domain.task.Task;
|
|||
|
||||
public interface GetAllTasks {
|
||||
public Iterable<Task> getAll();
|
||||
}
|
||||
};
|
||||
|
|
|
@ -19,4 +19,4 @@ public class TaskService {
|
|||
return taskRepository.findAll();
|
||||
}
|
||||
|
||||
}
|
||||
};
|
||||
|
|
|
@ -25,4 +25,5 @@ public class TaskRequest {
|
|||
public void setDueDate(String dueDate) {
|
||||
this.dueDate = dueDate;
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue