AbstractCoordinateOperation changes for revisions 12213:12214

This name change does not apply to SIS since this constant got a different name, different type and is located in a different place in Apache SIS.

Command line:

svn diff --extensions "--unified --ignore-space-change --ignore-all-space --ignore-eol-style" -r12213:12214 https://svn.osgeo.org/geotools/trunk/modules/library/referencing/src/main/java/org/geotools/referencing/operation/AbstractCoordinateOperation.java
Revision 12213Revision 12214
     * 'conversionFromBase' field that is set to this CoordinateOperation.
     */
    synchronized (GeneralDerivedCRS.class) {
        if (GeneralDerivedCRS.\u00A4COMPARING != null) {
            // NOTE: the following assertion fails for deserialized objects.
            // assert GeneralDerivedCRS.\u00A4COMPARING == targetCRS;
            return true;
        }
        try {
            GeneralDerivedCRS.\u00A4COMPARING = this;
            return equals(this.targetCRS, that.targetCRS, compareMetadata);
        } finally {
            GeneralDerivedCRS.\u00A4COMPARING = null;
        }
    }
}
     * 'conversionFromBase' field that is set to this CoordinateOperation.
     */
    synchronized (GeneralDerivedCRS.class) {
        if (GeneralDerivedCRS.COMPARING != null) {
            // NOTE: the following assertion fails for deserialized objects.
            // assert GeneralDerivedCRS.\u00A4COMPARING == targetCRS;
            return true;
        }
        try {
            GeneralDerivedCRS.COMPARING = this;
            return equals(this.targetCRS, that.targetCRS, compareMetadata);
        } finally {
            GeneralDerivedCRS.COMPARING = null;
        }
    }
}