spotbugs: remove unused variables

Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
This commit is contained in:
Andy Scherzinger 2020-07-08 18:22:16 +02:00
parent b6d09c42a9
commit 2916c82a5b
No known key found for this signature in database
GPG key ID: 6CADC7E3523C308B
2 changed files with 0 additions and 3 deletions

View file

@ -97,7 +97,6 @@ public class PhotoSearchTask extends AsyncTask<Void, Void, RemoteOperationResult
@Override
protected void onPostExecute(RemoteOperationResult result) {
if (photoFragmentWeakReference.get() != null) {
Boolean loadingStatus = false;
PhotoFragment photoFragment = photoFragmentWeakReference.get();
if (result.isSuccess() && result.getData() != null && !isCancelled()) {

View file

@ -71,8 +71,6 @@ public class MultipleAccountsDialog extends DialogFragment implements Injectable
throw new IllegalArgumentException("Activity may not be null");
}
int accentColor = ThemeUtils.primaryAccentColor(getContext());
// Inflate the layout for the dialog
LayoutInflater inflater = activity.getLayoutInflater();
@SuppressLint("InflateParams") View view = inflater.inflate(R.layout.multiple_accounts, null);