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,8 +1,13 @@
package fr.free.nrw.commons;
import android.app.*;
import android.content.*;
import android.os.*;
import android.app.Service;
import android.content.Intent;
import android.os.Binder;
import android.os.Handler;
import android.os.HandlerThread;
import android.os.IBinder;
import android.os.Looper;
import android.os.Message;
public abstract class HandlerService<T> extends Service {
private volatile Looper threadLooper;