Skip to content

Commit 5b9f87c

Browse files
committed
minor cleanup
1 parent 5ee6591 commit 5b9f87c

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

src/main/java/com/fasterxml/jackson/databind/ser/impl/JsonSerializerMap.java

+4
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@
77

88
/**
99
* Specialized read-only map used for storing and accessing serializers by type.
10+
* Used for per-{@link com.fasterxml.jackson.databind.ObjectMapper} sharing
11+
* of resolved serializers; in addition, a per-call non-shared read/write
12+
* map may be needed, which will (after call) get merged to create a new
13+
* shared map of this type.
1014
*/
1115
public class JsonSerializerMap
1216
{

src/test/java/com/fasterxml/jackson/databind/jsontype/TestPolymorphicWithDefaultImpl.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -90,10 +90,10 @@ public static class Bad {
9090
public static class GoodItem {}
9191

9292
public static class GoodSub1 extends GoodItem {
93-
public String a ;
93+
public String a;
9494
}
9595
public static class GoodSub2 extends GoodItem {
96-
public String b ;
96+
public String b;
9797

9898
}
9999

0 commit comments

Comments
 (0)