Closed
Description
When serializing an object having negative int value for one of its instance field, the returned serialized object have a weird value instead of the negative int value.
For example, if I call the following piece of code with an object having -50 as value for one of its int field, the serialized value for this field is 4294967246;
VPack vpack = vpack();
System.out.println(vpack.serialize(object).toString());