changed comments

This commit is contained in:
Philipp Schaefer
2013-07-09 00:19:31 +02:00
parent 7fcb1e0874
commit a1cfa9b8d6
2 changed files with 3 additions and 5 deletions

View File

@ -9,9 +9,9 @@ import java.net.URL;
import java.util.Scanner;
/*
* this class parses the content of an web page.
* this class parses the content of a web page.
* since network operations shouldn't be done on main UI thread
* we use an async task for this.
* (NetworkOnMainThread exception is thrown) we use an async task for this.
*/
public class UrlContentToString extends AsyncTask<URL, Integer, String> {