You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ch...@apache.org on 2006/07/25 17:44:22 UTC

svn commit: r425428 - /incubator/activemq/branches/activemq-4.0/activemq-core/src/main/java/org/apache/activemq/util/MarshallingSupport.java

Author: chirino
Date: Tue Jul 25 08:44:22 2006
New Revision: 425428

URL: http://svn.apache.org/viewvc?rev=425428&view=rev
Log:
https://issues.apache.org/activemq/browse/AMQ-788

Modified:
    incubator/activemq/branches/activemq-4.0/activemq-core/src/main/java/org/apache/activemq/util/MarshallingSupport.java

Modified: incubator/activemq/branches/activemq-4.0/activemq-core/src/main/java/org/apache/activemq/util/MarshallingSupport.java
URL: http://svn.apache.org/viewvc/incubator/activemq/branches/activemq-4.0/activemq-core/src/main/java/org/apache/activemq/util/MarshallingSupport.java?rev=425428&r1=425427&r2=425428&view=diff
==============================================================================
--- incubator/activemq/branches/activemq-4.0/activemq-core/src/main/java/org/apache/activemq/util/MarshallingSupport.java (original)
+++ incubator/activemq/branches/activemq-4.0/activemq-core/src/main/java/org/apache/activemq/util/MarshallingSupport.java Tue Jul 25 08:44:22 2006
@@ -175,12 +175,6 @@
         case BIG_STRING_TYPE:
             value = readUTF8(in);
             break;
-        case MAP_TYPE:
-            value = unmarshalPrimitiveMap(in);
-            break;
-        case LIST_TYPE:
-            value = unmarshalPrimitiveList(in);
-            break;
         }
         return value;
     }