Merge pull request #6538 from osmandapp/xmd5a_branch

Fix POI compare
This commit is contained in:
xmd5a 2019-02-12 15:49:50 +03:00 committed by GitHub
commit 4e9bbf4648
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -274,6 +274,7 @@ public class Amenity extends MapObject {
Algorithms.objectEquals(getLocation(), thatObj.getLocation()) &&
Algorithms.objectEquals(this.subType, thatObj.subType) &&
Algorithms.objectEquals(this.additionalInfo, thatObj.additionalInfo) &&
Algorithms.objectEquals(this.getName(), thatObj.getName()) &&
Algorithms.objectEquals(this.getNamesMap(true), thatObj.getNamesMap(true))) {
return true;
}