Skip to content

Commit 44bee19

Browse files
authored
Merge branch '2.x' into creator-setter-order
2 parents cea0313 + 28888a8 commit 44bee19

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/main/java/com/fasterxml/jackson/databind/ser/ContainerSerializer.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010
* {@link java.util.Collection}s (<code>Lists</code>, <code>Sets</code>
1111
* etc) and {@link java.util.Map}s and iterable things
1212
* ({@link java.util.Iterator}s).
13+
*<p>
14+
* NOTE: in Jackson 3.x, this class is renamed {@code StdContainerSerializer}
15+
* (in package {@code tools.jackson.databind.ser.std}).
1316
*/
1417
@SuppressWarnings("serial")
1518
public abstract class ContainerSerializer<T>
@@ -35,8 +38,6 @@ protected ContainerSerializer(JavaType fullType) {
3538
/**
3639
* Alternate constructor that is (alas!) needed to work
3740
* around kinks of generic type handling
38-
*
39-
* @param t
4041
*/
4142
protected ContainerSerializer(Class<?> t, boolean dummy) {
4243
super(t, dummy);

0 commit comments

Comments
 (0)