MathTransformParser changes for revisions 25049:25050

The only change in this commit is to rename FactoryFinder as ReferencingFactoryFinder. However this change does not apply to SIS since we do not plan to port [Referencing]FactoryFinder. The plan is to replace them by some dependency injection mechanism.

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/wkt/MathTransformParser.java
Revision 25049Revision 25050
import org.opengis.referencing.operation.OperationMethod;

// Geotools dependencies
import org.geotools.referencing.FactoryFinder;
import org.geotools.referencing.AbstractIdentifiedObject;
import org.geotools.referencing.operation.DefaultMathTransformFactory;
import org.geotools.resources.i18n.ErrorKeys;
import org.opengis.referencing.operation.OperationMethod;

// Geotools dependencies
import org.geotools.referencing.ReferencingFactoryFinder;
import org.geotools.referencing.AbstractIdentifiedObject;
import org.geotools.referencing.operation.DefaultMathTransformFactory;
import org.geotools.resources.i18n.ErrorKeys;
 * @todo Pass hints in argument.
 */
public MathTransformParser(final Symbols symbols) {
    this(symbols, FactoryFinder.getMathTransformFactory(null));
}

/**
 * @todo Pass hints in argument.
 */
public MathTransformParser(final Symbols symbols) {
    this(symbols, ReferencingFactoryFinder.getMathTransformFactory(null));
}

/**