I'm checking out this tutorial: http://www.developerfeed.com/building-todo-list-app-android-using-sqlite
What I do not understand is this piece of code:
public Task()
{
this.taskName=null;
this.status=0;
}
public Task(String taskName, int status) {
super();
this.taskName = taskName;
this.status = status;
}
Why the need to call super() on this point?
Edit: The reason why I'm asking is because I personaly see no need to put it there.