We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 014568b + b91a4c4 commit 2594066Copy full SHA for 2594066
docs/html/resources/articles/painless-threading.jd
@@ -108,7 +108,7 @@ you. Our previous example can easily be rewritten with
108
new DownloadImageTask().execute("http://example.com/image.png");
109
}
110
111
-private class DownloadImageTask extends AsyncTask<string, void,="" bitmap=""> {
+private class DownloadImageTask extends AsyncTask<String, Void, Bitmap> {
112
protected Bitmap doInBackground(String... urls) {
113
return loadImageFromNetwork(urls[0]);
114
0 commit comments