Skip to content

Commit

Permalink
Fix [Issue#99]
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed Nov 2, 2012
1 parent 98d639b commit a50e76b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
7 changes: 4 additions & 3 deletions release-notes/VERSION
Expand Up @@ -10,16 +10,17 @@ Fixes:
* [Issue#93]: ObjectNode.setAll() broken; would not add anything for * [Issue#93]: ObjectNode.setAll() broken; would not add anything for
empty ObjectNodes. empty ObjectNodes.
(reported by Francis G) (reported by Francis G)
* [Issue#94]: PropertyNamingStrategy not java.io.Serializable * Making things implement java.io.Serializable:
(reported by Sean B) - [Issue#94]: PropertyNamingStrategy (reported by Sean B)
- [Issue#99]: EnumResolves (reported by Sean B)
* [Issue#96]: Problem with JsonTypeInfo.As.EXTERNAL_PROPERTY, defaultImpl * [Issue#96]: Problem with JsonTypeInfo.As.EXTERNAL_PROPERTY, defaultImpl
(reported by Adva11@github) (reported by Adva11@github)


------------------------------------------------------------------------ ------------------------------------------------------------------------
=== History: === === History: ===
------------------------------------------------------------------------ ------------------------------------------------------------------------


2.1.0 (26-Jun-2012) 2.1.0 (08-Oct-2012)


New minor version for 2.x series. Major improvements in multiple areas, New minor version for 2.x series. Major improvements in multiple areas,
including: including:
Expand Down
Expand Up @@ -10,7 +10,10 @@
* names or regular String values) into Java Enum instances. * names or regular String values) into Java Enum instances.
*/ */
public class EnumResolver<T extends Enum<T>> public class EnumResolver<T extends Enum<T>>
implements java.io.Serializable
{ {
private static final long serialVersionUID = 1L;

protected final Class<T> _enumClass; protected final Class<T> _enumClass;


protected final T[] _enums; protected final T[] _enums;
Expand Down

0 comments on commit a50e76b

Please sign in to comment.