Skip to content

Commit 4249f77

Browse files
committed
Fix javadoc errors introduced by 1621. (#1626)
Closes #1625.
1 parent 0030214 commit 4249f77

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

src/main/java/org/springframework/data/couchbase/core/convert/BooleanToEnumConverterFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
/**
3030
* Reading Converter factory for Enums. This differs from the one provided in org.springframework.core.convert.support
3131
* by getting the result from the jackson objectmapper (which will process @JsonValue annotations) This is registered in
32-
* {@link org.springframework.data.couchbase.config.AbstractCouchbaseConfiguration#customConversions(CryptoManager)}.
32+
* {@link org.springframework.data.couchbase.config.AbstractCouchbaseConfiguration#customConversions(CryptoManager, ObjectMapper)}.
3333
*
3434
* @author Michael Reiche
3535
*/

src/main/java/org/springframework/data/couchbase/core/convert/CouchbasePropertyValueConverterFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
* There can only be one propertyValueConverter for a property. Although there maybe be multiple annotations,
3939
* getConverter(property) only returns one converter (a ChainedPropertyValueConverter might be useful). Note that
4040
* valueConversions.afterPropertiesSet() (see
41-
* {@link org.springframework.data.couchbase.config.AbstractCouchbaseConfiguration#customConversions(CryptoManager)}
41+
* {@link org.springframework.data.couchbase.config.AbstractCouchbaseConfiguration#customConversions(CryptoManager, ObjectMapper)}
4242
* encapsulates this in a CachingPropertyValueConverterFactory which caches by 'property'. Although
4343
* CachingPropertyValueConverterFactory does have the functionality to cache by a type, it only caches by the type
4444
* specified on an @ValueConverter annotation.To avoid having identical converter instances for each instance of a class

src/main/java/org/springframework/data/couchbase/core/convert/IntegerToEnumConverterFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
/**
3030
* Reading Converter factory for Enums. This differs from the one provided in org.springframework.core.convert.support
3131
* by getting the result from the jackson objectmapper (which will process @JsonValue annotations) This is registered in
32-
* {@link org.springframework.data.couchbase.config.AbstractCouchbaseConfiguration#customConversions(CryptoManager)}.
32+
* {@link org.springframework.data.couchbase.config.AbstractCouchbaseConfiguration#customConversions(CryptoManager, ObjectMapper)}.
3333
* This will take precedence over {@link org.springframework.core.convert.support.IntegerToEnumConverterFactory}
3434
*
3535
* @author Michael Reiche

src/main/java/org/springframework/data/couchbase/core/convert/MappingCouchbaseConverter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -869,7 +869,7 @@ public Object getPotentiallyConvertedSimpleWrite(final CouchbasePersistentProper
869869
/**
870870
* This does process PropertyValueConversions
871871
*
872-
* @param value
872+
* @param property
873873
* @param accessor
874874
* @param processValueConverter
875875
* @return

src/main/java/org/springframework/data/couchbase/core/convert/StringToEnumConverterFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
/**
2828
* Reading Converter factory for Enums. This differs from the one provided in org.springframework.core.convert.support
2929
* by getting the result from the jackson objectmapper (which will process @JsonValue annotations) This is registered in
30-
* {@link org.springframework.data.couchbase.config.AbstractCouchbaseConfiguration#customConversions(CryptoManager)}.
30+
* {@link org.springframework.data.couchbase.config.AbstractCouchbaseConfiguration#customConversions(CryptoManager, ObjectMapper)}.
3131
* This will take precedence over {@link org.springframework.core.convert.support.StringToEnumConverterFactory}
3232
*
3333
* @author Michael Reiche

0 commit comments

Comments
 (0)