Skip to content

Commit

Permalink
minor cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed Dec 17, 2014
1 parent 5ee6591 commit 5b9f87c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@

/**
* Specialized read-only map used for storing and accessing serializers by type.
* Used for per-{@link com.fasterxml.jackson.databind.ObjectMapper} sharing
* of resolved serializers; in addition, a per-call non-shared read/write
* map may be needed, which will (after call) get merged to create a new
* shared map of this type.
*/
public class JsonSerializerMap
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,10 +90,10 @@ public static class Bad {
public static class GoodItem {}

public static class GoodSub1 extends GoodItem {
public String a ;
public String a;
}
public static class GoodSub2 extends GoodItem {
public String b ;
public String b;

}

Expand Down

0 comments on commit 5b9f87c

Please sign in to comment.