SortedSet<ConfigurationProperty> configurationProperties) {
SortedSet<com.google.gwt.core.ext.linker.ConfigurationProperty> linkerConfigurationProperties =
new TreeSet<com.google.gwt.core.ext.linker.ConfigurationProperty>(
StandardLinkerContext.CONFIGURATION_PROPERTY_COMPARATOR);
for (ConfigurationProperty configurationProperty : configurationProperties) {
linkerConfigurationProperties.add(new StandardConfigurationProperty(configurationProperty));
}
return linkerConfigurationProperties;
}