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

        

------------------------------------------------------------------------------
Crystal Reports - New Free Runtime and 30 Day Trial
Check out the new simplified licensing option that enables 
unlimited royalty-free distribution of the report engine 
for externally facing server and web deployment. 
http://p.sf.net/sfu/businessobjects
_______________________________________________
Geoserver-devel mailing list
Geoserver-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-devel

Reply via email to