Skip to content

Commit 171fb41

Browse files
committed
Merge branch '2.19' into 2.x
2 parents 0d54df6 + 6f32617 commit 171fb41

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

src/main/java/com/fasterxml/jackson/databind/PropertyNamingStrategy.java

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,14 @@
2828
* from methods (as well as lower-cases initial sequence of capitalized
2929
* characters).
3030
*<p>
31-
* NOTE! Since 2.12 sub-classes defined here (as well as static singleton instances thereof)
32-
* are deprecated due to
31+
* NOTE! Since 2.12 up until 2.19, sub-classes defined here (as well as static singleton
32+
* instances thereof)
33+
* were deprecated due to
3334
* <a href="https://github.com/FasterXML/jackson-databind/issues/2715">databind#2715</a>.
35+
* They were removed in 2.20.
3436
* Please use constants and classes in {@link PropertyNamingStrategies} instead.
35-
*
37+
* In particular, {@link PropertyNamingStrategies.NamingBase} is the base class
38+
* to use.
3639
*/
3740
public class PropertyNamingStrategy // NOTE: was abstract until 2.7
3841
implements java.io.Serializable
@@ -150,6 +153,8 @@ public String nameForConstructorParameter(MapperConfig<?> config, AnnotatedParam
150153
*/
151154

152155
/*
156+
* Replaced by {@link PropertyNamingStrategies.NamingBase}.
157+
*
153158
* @deprecated Since 2.12 deprecated. See
154159
* <a href="https://github.com/FasterXML/jackson-databind/issues/2715">databind#2715</a>
155160
* for reasons for deprecation.

0 commit comments

Comments
 (0)