CoordinateOperationRegistry changes for revisions 25049:25050

This class renaming (FactoryFinder to ReferencingFactoryFinder) does not apply to Apache SIS since we did not ported those finders. We intend to use dependency injection instead.

Command line:

svn diff --extensions "--unified --ignore-space-change --ignore-all-space --ignore-eol-style" -r25049:25050 https://svn.osgeo.org/geotools/trunk/modules/library/referencing/src/main/java/org/geotools/referencing/operation/AuthorityBackedFactory.java
Revision 25049Revision 25050
import org.geotools.factory.OptionalFactory;
import org.geotools.factory.FactoryRegistryException;
import org.geotools.referencing.AbstractIdentifiedObject;
import org.geotools.referencing.FactoryFinder;
import org.geotools.referencing.factory.BackingStoreException;
import org.geotools.resources.i18n.Logging;
import org.geotools.resources.i18n.LoggingKeys;
import org.geotools.factory.OptionalFactory;
import org.geotools.factory.FactoryRegistryException;
import org.geotools.referencing.AbstractIdentifiedObject;
import org.geotools.referencing.ReferencingFactoryFinder;
import org.geotools.referencing.factory.BackingStoreException;
import org.geotools.resources.i18n.Logging;
import org.geotools.resources.i18n.LoggingKeys;
    hints.keySet().removeAll(this.hints.keySet());
    if (!hints.isEmpty()) {
        noForce(hints);
        authorityFactory = FactoryFinder.getCoordinateOperationAuthorityFactory(
                DEFAULT_AUTHORITY, hints);
    }
}
    hints.keySet().removeAll(this.hints.keySet());
    if (!hints.isEmpty()) {
        noForce(hints);
        authorityFactory = ReferencingFactoryFinder.getCoordinateOperationAuthorityFactory(
                DEFAULT_AUTHORITY, hints);
    }
}
     */
    final Hints hints = new Hints(null);
    noForce(hints);
    authorityFactory = FactoryFinder
            .getCoordinateOperationAuthorityFactory(DEFAULT_AUTHORITY, hints);
}
return authorityFactory;
     */
    final Hints hints = new Hints(null);
    noForce(hints);
    authorityFactory = ReferencingFactoryFinder
            .getCoordinateOperationAuthorityFactory(DEFAULT_AUTHORITY, hints);
}
return authorityFactory;