Skip to content

Commit 26df6fb

Browse files
wilkinsonasnicoll
authored andcommitted
Update Jackson-based decoders to reflect 2.14 baseline
See gh-29508
1 parent 508d2c7 commit 26df6fb

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

spring-web/src/main/java/org/springframework/http/codec/json/AbstractJackson2Decoder.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,9 @@
5252
import org.springframework.util.MimeType;
5353

5454
/**
55-
* Abstract base class for Jackson 2.9 decoding, leveraging non-blocking parsing.
55+
* Abstract base class for Jackson 2.14 decoding, leveraging non-blocking parsing.
5656
*
57-
* <p>Compatible with Jackson 2.9.7 and higher.
57+
* <p>Compatible with Jackson 2.14, as of Spring 6.0.
5858
*
5959
* @author Sebastien Deleuze
6060
* @author Rossen Stoyanchev

spring-web/src/main/java/org/springframework/http/codec/json/Jackson2JsonDecoder.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2020 the original author or authors.
2+
* Copyright 2002-2022 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -35,7 +35,7 @@
3535
import org.springframework.util.MimeTypeUtils;
3636

3737
/**
38-
* Decode a byte stream into JSON and convert to Object's with Jackson 2.9,
38+
* Decode a byte stream into JSON and convert to Object's with Jackson 2.14,
3939
* leveraging non-blocking parsing.
4040
*
4141
* @author Sebastien Deleuze

spring-web/src/main/java/org/springframework/http/codec/json/Jackson2SmileDecoder.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2018 the original author or authors.
2+
* Copyright 2002-2022 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -24,7 +24,7 @@
2424
import org.springframework.util.MimeType;
2525

2626
/**
27-
* Decode a byte stream into Smile and convert to Object's with Jackson 2.9,
27+
* Decode a byte stream into Smile and convert to Object's with Jackson 2.14,
2828
* leveraging non-blocking parsing.
2929
*
3030
* @author Sebastien Deleuze

0 commit comments

Comments
 (0)