mirror of
https://github.com/commons-app/apps-android-commons.git
synced 2025-10-29 13:53:54 +01:00
Simplify boolean expressions
This commit is contained in:
parent
f019aa2865
commit
5fe95813df
3 changed files with 3 additions and 3 deletions
|
|
@ -113,7 +113,7 @@ public class ShareActivity
|
|||
Toast startingToast = Toast.makeText(getApplicationContext(), R.string.uploading_started, Toast.LENGTH_LONG);
|
||||
startingToast.show();
|
||||
|
||||
if (cacheFound == false) {
|
||||
if (!cacheFound) {
|
||||
//Has to be called after apiCall.request()
|
||||
app.cacheData.cacheCategory();
|
||||
Timber.d("Cache the categories found");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue