mirror of https://github.com/apache/activemq.git
MarshallingSupport.unmarshalPrimitive is throwing "Unknown primitive type: 0" when nested map contains a null
git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@588718 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
ceec57aa0d
commit
6084b6061b
|
@ -192,6 +192,9 @@ public final class MarshallingSupport {
|
|||
case LIST_TYPE:
|
||||
value = unmarshalPrimitiveList(in);
|
||||
break;
|
||||
case NULL:
|
||||
value = null;
|
||||
break;
|
||||
default:
|
||||
throw new IOException("Unknown primitive type: " + type);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue