Bug 832561 - Provide a stub implementation of GeckoAsyncTask.onPostExecute. r=lucasr

This commit is contained in:
Wes Johnston 2013-01-24 15:55:46 -08:00
parent 1ec012b5cb
commit 2ad961bb6a

View File

@ -53,6 +53,8 @@ public abstract class GeckoAsyncTask<Params, Progress, Result> {
return this;
}
/* Empty stub method. Implementors can optionally override this if they need it */
protected void onPostExecute(Result result) { }
protected abstract Result doInBackground(Params... params);
protected abstract void onPostExecute(Result result);
}