mirror of
https://github.com/commons-app/apps-android-commons.git
synced 2025-10-27 12:53:55 +01:00
Replace 'removeAll()' with 'clear()'
This commit is contained in:
parent
825cdafe7b
commit
547f2a062c
2 changed files with 3 additions and 3 deletions
|
|
@ -173,7 +173,7 @@ public class Media implements Parcelable {
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setCategories(List<String> categories) {
|
public void setCategories(List<String> categories) {
|
||||||
this.categories.removeAll(this.categories);
|
this.categories.clear();
|
||||||
this.categories.addAll(categories);
|
this.categories.addAll(categories);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -235,7 +235,7 @@ public class MediaDetailFragment extends Fragment {
|
||||||
coordinates.setText(prettyCoordinates(media));
|
coordinates.setText(prettyCoordinates(media));
|
||||||
uploadedDate.setText(prettyUploadedDate(media));
|
uploadedDate.setText(prettyUploadedDate(media));
|
||||||
|
|
||||||
categoryNames.removeAll(categoryNames);
|
categoryNames.clear();
|
||||||
categoryNames.addAll(media.getCategories());
|
categoryNames.addAll(media.getCategories());
|
||||||
|
|
||||||
categoriesLoaded = true;
|
categoriesLoaded = true;
|
||||||
|
|
@ -280,7 +280,7 @@ public class MediaDetailFragment extends Fragment {
|
||||||
desc.setText(prettyDescription(media));
|
desc.setText(prettyDescription(media));
|
||||||
license.setText(prettyLicense(media));
|
license.setText(prettyLicense(media));
|
||||||
|
|
||||||
categoryNames.removeAll(categoryNames);
|
categoryNames.clear();
|
||||||
categoryNames.addAll(media.getCategories());
|
categoryNames.addAll(media.getCategories());
|
||||||
|
|
||||||
categoriesLoaded = true;
|
categoriesLoaded = true;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue