Reorganize imports across the project

Remove unwanted imports and sort import statements by running Android
Studio's 'Optimize Imports' feature in all source files.
This commit is contained in:
Anirudh S 2016-10-30 23:14:07 +05:30
parent a685ecf2c3
commit 1a11e0afc0
43 changed files with 235 additions and 176 deletions

View file

@ -1,14 +1,21 @@
package fr.free.nrw.commons;
import android.content.SharedPreferences;
import android.os.*;
import android.os.AsyncTask;
import android.os.Build;
import android.preference.PreferenceManager;
import android.util.*;
import in.yuvi.http.fluent.Http;
import android.util.Log;
import org.apache.http.HttpResponse;
import org.json.*;
import org.json.JSONException;
import org.json.JSONObject;
import java.io.IOException;
import java.net.*;
import java.net.HttpURLConnection;
import java.net.MalformedURLException;
import java.net.URL;
import in.yuvi.http.fluent.Http;
public class EventLog {