1
0
mirror of https://github.com/TeamNewPipe/NewPipe synced 2025-09-19 19:14:03 +00:00

Pull request changes v1.

This commit is contained in:
Kartikey Kushwaha
2018-09-15 14:08:32 +05:30
parent cde5f7d12e
commit 6417bd91ef

View File

@@ -7,7 +7,6 @@ import android.net.Uri;
import android.os.AsyncTask;
import android.support.v4.app.NotificationCompat;
import android.support.v4.app.NotificationManagerCompat;
import android.util.Log;
import org.json.JSONException;
import org.json.JSONObject;
@@ -16,7 +15,6 @@ import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.MalformedURLException;
import java.net.URL;
/**
@@ -44,8 +42,6 @@ public class CheckForNewAppVersionTask extends AsyncTask<Void, Void, String> {
// Make a network request to get latest NewPipe data.
Log.i("Update---", "checking");
String response;
HttpURLConnection connection = null;
@@ -85,8 +81,6 @@ public class CheckForNewAppVersionTask extends AsyncTask<Void, Void, String> {
return response;
}
} catch (MalformedURLException ex) {
ex.printStackTrace();
} catch (IOException ex) {
ex.printStackTrace();
} finally {