OSGeo/PROJ-JNI

Wrong arguments for equals()

ggmuelle opened this issue · 1 comments

In

return Objects.equals(crs, other.getCoordinateReferenceSystem() == null)
a CRS is compared to a boolean. I guess it needs to be like this:

return Objects.equals(crs, other.getCoordinateReferenceSystem())

Indeed, thanks for spotting that! I just pushed the fix.