diff --git a/app/src/main/java/fr/free/nrw/commons/Media.java b/app/src/main/java/fr/free/nrw/commons/Media.java index a77d3ac2e..f28dcdb6b 100644 --- a/app/src/main/java/fr/free/nrw/commons/Media.java +++ b/app/src/main/java/fr/free/nrw/commons/Media.java @@ -60,7 +60,7 @@ public class Media implements Parcelable { * Depicts is a feature part of Structured data. Multiple Depictions can be added for an image just like categories. * However unlike categories depictions is multi-lingual */ - public List> depictionList; + public ArrayList> depictionList; /** * The above hashmap is fetched from API and to diplay in Explore * However this list of depictions is for storing and retrieving depictions from local storage or cache @@ -625,27 +625,7 @@ public class Media implements Parcelable { public int describeContents() { return 0; } - /** - * Depicts is a feature part of Structured data. Multiple Depictions can be added for an image just like categories. - * However unlike categories depictions is multi-lingual - */ - public ArrayList> depictionList; - /** - * The above hashmap is fetched from API and to diplay in Explore - * However this list of depictions is for storing and retrieving depictions from local storage or cache - */ - public ArrayList depictions; - public boolean requestedDeletion; - public HashMap descriptions; // multilingual descriptions as loaded - /** - * This hasmap stores the list of multilingual captions, where - * key of the HashMap is the language and value is the caption in the corresponding language - * Ex: key = "en", value: "" - * key = "de" , value: "" - */ - public Map captions; - public HashMap tags = new HashMap<>(); - @Nullable public LatLng coordinates; + /** * Creates a way to transfer information between two or more * activities.