Fix docs sample for ConversionServiceFactoryBean

Fix the reference documentation example for ConversionServiceFactoryBean
to use a `<set>` instead of a `<list>`.

Issue: SPR-10802
This commit is contained in:
Phillip Webb 2013-11-21 15:53:22 -08:00
parent d9c4470461
commit f3504b2fd5
1 changed files with 2 additions and 2 deletions

View File

@ -10335,9 +10335,9 @@ either of the Converter, ConverterFactory, or GenericConverter interfaces.
<bean id="conversionService" <bean id="conversionService"
class="org.springframework.context.support.ConversionServiceFactoryBean"> class="org.springframework.context.support.ConversionServiceFactoryBean">
<property name="converters"> <property name="converters">
<list> <set>
<bean class="example.MyCustomConverter"/> <bean class="example.MyCustomConverter"/>
</list> </set>
</property> </property>
</bean> </bean>
---- ----