telenths / protostuff

Automatically exported from code.google.com/p/protostuff
Apache License 2.0
0 stars 0 forks source link

EnumSet and EnumMap without generics are not handled #87

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
enum Gender { MALE, FEMALE }

public class Pojo
{
    EnumSet<Gender> genderSet; 
    EnumSet anotherGenderSet; // not handled (exception thrown on ser)
}

Original issue reported on code.google.com by david.yu...@gmail.com on 21 Oct 2011 at 5:25

GoogleCodeExporter commented 8 years ago
fix at rev 1394.

Original comment by david.yu...@gmail.com on 21 Oct 2011 at 5:33

GoogleCodeExporter commented 8 years ago
additional handling committed to complete this issue @ rev 1395.

Original comment by david.yu...@gmail.com on 22 Oct 2011 at 6:53