This commit propagates the renaming of IdentifierImpl
as NamedIdentifier
.
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/DefaultParameterDescriptorGroup.java
Revision 24972 | Revision 24973 |
---|---|
import org.opengis.parameter.ParameterValueGroup;
// Geotools dependencies
import org.geotools.metadata.iso.IdentifierImpl;
import org.geotools.referencing.AbstractIdentifiedObject;
import org.geotools.resources.UnmodifiableArrayList;
import org.geotools.resources.i18n.ErrorKeys;
import org.geotools.resources.i18n.Errors; |
import org.opengis.parameter.ParameterValueGroup;
// Geotools dependencies
import org.geotools.referencing.AbstractIdentifiedObject;
import org.geotools.referencing.NamedIdentifier;
import org.geotools.resources.UnmodifiableArrayList;
import org.geotools.resources.i18n.ErrorKeys;
import org.geotools.resources.i18n.Errors; |
public DefaultParameterDescriptorGroup(final Citation authority, final String name,
final GeneralParameterDescriptor[] parameters)
{
this(Collections.singletonMap(NAME_KEY, new IdentifierImpl(authority, name)), parameters);
}
/** |
public DefaultParameterDescriptorGroup(final Citation authority, final String name,
final GeneralParameterDescriptor[] parameters)
{
this(Collections.singletonMap(NAME_KEY, new NamedIdentifier(authority, name)), parameters);
}
/** |