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:
Hiram R. Chirino 2007-10-26 17:32:19 +00:00
parent ceec57aa0d
commit 6084b6061b
1 changed files with 3 additions and 0 deletions

View File

@ -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);
}