Skip to content

Commit

Permalink
javadoc: correct constructor (#11271)
Browse files Browse the repository at this point in the history
* javadoc: correct constructor

* Update jackson-databind/src/main/java/io/micronaut/jackson/codec/JsonMediaTypeCodec.java
  • Loading branch information
sdelamo authored Oct 25, 2024
1 parent c81e528 commit 6ad973b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public JsonMediaTypeCodec(ObjectMapper objectMapper,
* @param objectMapper To read/write JSON
* @param applicationConfiguration The common application configurations
* @param codecConfiguration The configuration for the codec
* @deprecated Use {@link #JsonMediaTypeCodec(BeanProvider, ApplicationConfiguration, CodecConfiguration, ApplicationConfiguration)} instead
* @deprecated Use {@link #JsonMediaTypeCodec(BeanProvider, CodecConfiguration, ApplicationConfiguration)} instead
*/
@Deprecated
public JsonMediaTypeCodec(BeanProvider<ObjectMapper> objectMapper,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public JsonStreamMediaTypeCodec(ObjectMapper objectMapper,
* @param objectMapper To read/write JSON
* @param applicationConfiguration The common application configurations
* @param codecConfiguration The configuration for the codec
* @deprecated Use {@link #JsonStreamMediaTypeCodec(BeanProvider, ApplicationConfiguration, CodecConfiguration, ApplicationConfiguration)} instead.
* @deprecated Use {@link #JsonStreamMediaTypeCodec(BeanProvider, CodecConfiguration, ApplicationConfiguration)} instead.
*/
@Deprecated
public JsonStreamMediaTypeCodec(BeanProvider<ObjectMapper> objectMapper,
Expand Down

0 comments on commit 6ad973b

Please sign in to comment.