Should I call super.onPostExecute(result) in Android AsyncTask?

Viewed 7677

I wonder if it has any meaning to call super.onPostExecute(result) or super.onPreExecute in Android AsyncTask? I have been always calling them, but even in Android documentation about AsyncTask (Android API Reference: AsyncTask) they are omitted. So does it make any sense if I call them or not?

2 Answers
Related