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:
parent
d9c4470461
commit
f3504b2fd5
|
|
@ -10335,9 +10335,9 @@ either of the Converter, ConverterFactory, or GenericConverter interfaces.
|
|||
<bean id="conversionService"
|
||||
class="org.springframework.context.support.ConversionServiceFactoryBean">
|
||||
<property name="converters">
|
||||
<list>
|
||||
<set>
|
||||
<bean class="example.MyCustomConverter"/>
|
||||
</list>
|
||||
</set>
|
||||
</property>
|
||||
</bean>
|
||||
----
|
||||
|
|
|
|||
Loading…
Reference in New Issue