File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/main/java/org/springframework/data/couchbase/core/convert Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 20
20
import org .springframework .context .ApplicationContextAware ;
21
21
import org .springframework .core .CollectionFactory ;
22
22
import org .springframework .core .convert .ConversionService ;
23
- import org .springframework .core .convert .support .ConversionServiceFactory ;
23
+ import org .springframework .core .convert .support .DefaultConversionService ;
24
24
import org .springframework .data .convert .EntityInstantiator ;
25
25
import org .springframework .data .couchbase .core .mapping .CouchbaseDocument ;
26
26
import org .springframework .data .couchbase .core .mapping .CouchbaseList ;
@@ -80,7 +80,7 @@ public class MappingCouchbaseConverter extends AbstractCouchbaseConverter
80
80
@ SuppressWarnings ("deprecation" )
81
81
public MappingCouchbaseConverter (final MappingContext <? extends CouchbasePersistentEntity <?>,
82
82
CouchbasePersistentProperty > mappingContext ) {
83
- super (ConversionServiceFactory . createDefaultConversionService ());
83
+ super (new DefaultConversionService ());
84
84
85
85
this .mappingContext = mappingContext ;
86
86
typeMapper = new DefaultCouchbaseTypeMapper (DefaultCouchbaseTypeMapper .DEFAULT_TYPE_KEY );
You can’t perform that action at this time.
0 commit comments