From 32a13b46aebe4e7956ed7154927585351a17922a Mon Sep 17 00:00:00 2001 From: Philipp Schaefer Date: Fri, 8 Nov 2013 21:57:12 +0100 Subject: [PATCH] stick to camelCase --- .../com/cradle/iitc_mobile/async/DownloadIitcUpdate.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mobile/src/com/cradle/iitc_mobile/async/DownloadIitcUpdate.java b/mobile/src/com/cradle/iitc_mobile/async/DownloadIitcUpdate.java index b7abfc90..f2f64fb6 100644 --- a/mobile/src/com/cradle/iitc_mobile/async/DownloadIitcUpdate.java +++ b/mobile/src/com/cradle/iitc_mobile/async/DownloadIitcUpdate.java @@ -37,10 +37,10 @@ public class DownloadIitcUpdate extends AsyncTask { } @Override - protected String doInBackground(String... f_url) { + protected String doInBackground(String... fileUrl) { int count; try { - URL url = new URL(f_url[0]); + URL url = new URL(fileUrl[0]); URLConnection connection = url.openConnection(); connection.connect(); int lengthOfFile = connection.getContentLength(); @@ -87,7 +87,7 @@ public class DownloadIitcUpdate extends AsyncTask { } @Override - protected void onPostExecute(String file_url) { + protected void onPostExecute(String fileUrl) { // dismiss the dialog after the file was downloaded mProgressDialog.dismiss();