stick to camelCase

This commit is contained in:
Philipp Schaefer 2013-11-08 21:57:12 +01:00
parent c82803d236
commit 32a13b46ae

View File

@ -37,10 +37,10 @@ public class DownloadIitcUpdate extends AsyncTask<String, Integer, String> {
} }
@Override @Override
protected String doInBackground(String... f_url) { protected String doInBackground(String... fileUrl) {
int count; int count;
try { try {
URL url = new URL(f_url[0]); URL url = new URL(fileUrl[0]);
URLConnection connection = url.openConnection(); URLConnection connection = url.openConnection();
connection.connect(); connection.connect();
int lengthOfFile = connection.getContentLength(); int lengthOfFile = connection.getContentLength();
@ -87,7 +87,7 @@ public class DownloadIitcUpdate extends AsyncTask<String, Integer, String> {
} }
@Override @Override
protected void onPostExecute(String file_url) { protected void onPostExecute(String fileUrl) {
// dismiss the dialog after the file was downloaded // dismiss the dialog after the file was downloaded
mProgressDialog.dismiss(); mProgressDialog.dismiss();