ResourceInfoImpl equality fails to compare CRS
----------------------------------------------
Key: GEOS-3056
URL: http://jira.codehaus.org/browse/GEOS-3056
Project: GeoServer
Issue Type: Bug
Components: Configuration
Reporter: Andrea Aime
Assignee: Andrea Aime
Fix For: 1.7.5
Simple mistake in the equality code, it reads:
{code}
if (CRS.equalsIgnoreMetadata(nativeCRS, other.getNativeCRS()))
return false;
{code}
it should be
{code}
if (!CRS.equalsIgnoreMetadata(nativeCRS, other.getNativeCRS()))
return false;
{code}
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira