DefaultParameterDescriptor changes for revisions 24972:24973

This change has been forced by a class renaming. Reverting this change cause a compilation error, which can be fixed only be reapplying the exact same change (except for package name).

Command line:

svn diff --extensions "--unified --ignore-space-change --ignore-all-space --ignore-eol-style" -r24972:24973 https://svn.osgeo.org/geotools/trunk/modules/library/referencing/src/main/java/org/geotools/parameter/DefaultParameterDescriptor.java
Revision 24972Revision 24973
import org.opengis.parameter.GeneralParameterValue;

// Geotools dependencies
import org.geotools.metadata.iso.IdentifierImpl;
import org.geotools.referencing.AbstractIdentifiedObject;
import org.geotools.resources.ClassChanger;
import org.geotools.resources.Utilities;
import org.geotools.resources.i18n.Errors;
import org.opengis.parameter.GeneralParameterValue;

// Geotools dependencies
import org.geotools.referencing.AbstractIdentifiedObject;
import org.geotools.referencing.NamedIdentifier;
import org.geotools.resources.ClassChanger;
import org.geotools.resources.Utilities;
import org.geotools.resources.i18n.Errors;
                                  final Unit       unit,
                                  final boolean    required)
{
    this(Collections.singletonMap(NAME_KEY, new IdentifierImpl(authority, name)),
         valueClass, validValues, defaultValue, minimum, maximum, unit, required);
}
                                  final Unit       unit,
                                  final boolean    required)
{
    this(Collections.singletonMap(NAME_KEY, new NamedIdentifier(authority, name)),
         valueClass, validValues, defaultValue, minimum, maximum, unit, required);
}