mirror of
https://github.com/commons-app/apps-android-commons.git
synced 2025-10-29 13:53:54 +01:00
Replace fully qualified names with imports
This commit is contained in:
parent
9a6dd2e97e
commit
fe42731ee6
13 changed files with 43 additions and 36 deletions
|
|
@ -24,7 +24,7 @@ import fr.free.nrw.commons.contributions.ContributionsActivity;
|
|||
*/
|
||||
public class ExistingFileAsync extends AsyncTask<Void, Void, Boolean> {
|
||||
|
||||
private static final String TAG = fr.free.nrw.commons.upload.ExistingFileAsync.class.getName();
|
||||
private static final String TAG = ExistingFileAsync.class.getName();
|
||||
|
||||
private String fileSHA1;
|
||||
private Context context;
|
||||
|
|
|
|||
|
|
@ -11,6 +11,7 @@ import android.text.TextWatcher;
|
|||
import android.util.DisplayMetrics;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.Menu;
|
||||
import android.view.MenuInflater;
|
||||
import android.view.MenuItem;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
|
|
@ -200,7 +201,7 @@ public class MultipleUploadListFragment extends Fragment {
|
|||
}
|
||||
|
||||
@Override
|
||||
public void onCreateOptionsMenu(Menu menu, android.view.MenuInflater inflater) {
|
||||
public void onCreateOptionsMenu(Menu menu, MenuInflater inflater) {
|
||||
super.onCreateOptionsMenu(menu, inflater);
|
||||
menu.clear();
|
||||
inflater.inflate(R.menu.fragment_multiple_upload_list, menu);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue