Skip to content

Commit

Permalink
fix a minor problem with @JsonAlias
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed Feb 24, 2017
1 parent d51f69a commit 4b2f6d9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
* @since 2.9
*/
@Target({ElementType.ANNOTATION_TYPE, // for combo-annotations
ElementType.METHOD, ElementType.CONSTRUCTOR, ElementType.FIELD // for properties
ElementType.FIELD, ElementType.METHOD, ElementType.PARAMETER// for properties (field, setter, ctor param)
})
@Retention(RetentionPolicy.RUNTIME)
@JacksonAnnotation
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -245,6 +245,9 @@ public enum Feature {
/**
* Override for <code>MapperFeature.ACCEPT_CASE_INSENSITIVE_PROPERTIES</code>.
* Only affects deserialization, has no effect on serialization.
*<p>
* NOTE: starting with 2.9 can also effect Enum handling (and potentially other
* places where case-insensitive property values are accepted).
*
* @since 2.8
*/
Expand Down

0 comments on commit 4b2f6d9

Please sign in to comment.