Suppress lint warnings for unused functions

This commit is contained in:
fkloft 2016-10-20 21:47:50 +02:00
parent a384b21ed0
commit bae93594e3

View File

@ -4,6 +4,7 @@ import android.accounts.Account;
import android.accounts.AccountManager; import android.accounts.AccountManager;
import android.accounts.AccountManagerCallback; import android.accounts.AccountManagerCallback;
import android.accounts.AccountManagerFuture; import android.accounts.AccountManagerFuture;
import android.annotation.SuppressLint;
import android.app.Activity; import android.app.Activity;
import android.app.AlertDialog; import android.app.AlertDialog;
import android.content.DialogInterface; import android.content.DialogInterface;
@ -118,6 +119,7 @@ public class IITC_DeviceAccountLogin implements AccountManagerCallback<Bundle>,
* <p/> * <p/>
* After a token is created, AccountManager will call the run() method. * After a token is created, AccountManager will call the run() method.
*/ */
@SuppressLint("MissingPermission")
private void startAuthentication() { private void startAuthentication() {
mProgressbar.show(); mProgressbar.show();
@ -174,6 +176,7 @@ public class IITC_DeviceAccountLogin implements AccountManagerCallback<Bundle>,
* if we already have a username (e.g. because the existing login has timed out), we can directly start * if we already have a username (e.g. because the existing login has timed out), we can directly start
* authentication if an account with that username is found. * authentication if an account with that username is found.
*/ */
@SuppressLint("MissingPermission")
public void startLogin(final String realm, final String accountName, final String args) { public void startLogin(final String realm, final String accountName, final String args) {
mAccounts = mAccountManager.getAccountsByType(realm); mAccounts = mAccountManager.getAccountsByType(realm);
mAccountAdapter.notifyDataSetChanged(); mAccountAdapter.notifyDataSetChanged();