From b91a4c4f2325c879c549efe59b16195abad09920 Mon Sep 17 00:00:00 2001 From: Christian Mehlmauer Date: Mon, 12 Jul 2010 20:02:25 +0200 Subject: Fixed a Documentation Error in the AsyncTask Contstructor Change-Id: Ic5fb9c613b9e358f1ea81996ee705831a77368db --- docs/html/resources/articles/painless-threading.jd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs') diff --git a/docs/html/resources/articles/painless-threading.jd b/docs/html/resources/articles/painless-threading.jd index 921f4df..17cec35 100644 --- a/docs/html/resources/articles/painless-threading.jd +++ b/docs/html/resources/articles/painless-threading.jd @@ -108,7 +108,7 @@ you. Our previous example can easily be rewritten with new DownloadImageTask().execute("http://example.com/image.png"); } -private class DownloadImageTask extends AsyncTask<string, void,="" bitmap=""> { +private class DownloadImageTask extends AsyncTask<String, Void, Bitmap> { protected Bitmap doInBackground(String... urls) { return loadImageFromNetwork(urls[0]); } -- cgit v1.1