EPSGDataAccess changes for revisions 26249:26250

This commit has been reverted.

Command line:

svn diff --extensions "--unified --ignore-space-change --ignore-all-space --ignore-eol-style" -r26249:26250 https://svn.osgeo.org/geotools/trunk/modules/library/referencing/src/main/java/org/geotools/referencing/factory/epsg/DirectEpsgFactory.java
Revision 26249Revision 26250
if (semiMinorAxis != 0) {
    // Both 'inverseFlattening' and 'semiMinorAxis' are defined.
    // Log a warning and create the ellipsoid using the inverse flattening.
    LOGGER.log(Logging.format(Level.WARNING, LoggingKeys.AMBIGUOUS_ELLIPSOID));
}
ellipsoid = factories.getDatumFactory().createFlattenedSphere(
            properties, semiMajorAxis, inverseFlattening, unit);
if (semiMinorAxis != 0) {
    // Both 'inverseFlattening' and 'semiMinorAxis' are defined.
    // Log a warning and create the ellipsoid using the inverse flattening.
    LOGGER.log(Logging.format(Level.WARNING, LoggingKeys.AMBIGUOUS_ELLIPSOID,code));
}
ellipsoid = factories.getDatumFactory().createFlattenedSphere(
            properties, semiMajorAxis, inverseFlattening, unit);