You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ta...@apache.org on 2010/12/28 17:12:30 UTC

svn commit: r1053380 - /activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/src/main/csharp/Commands/ConsumerId.cs

Author: tabish
Date: Tue Dec 28 16:12:30 2010
New Revision: 1053380

URL: http://svn.apache.org/viewvc?rev=1053380&view=rev
Log:
Fix for: https://issues.apache.org/jira/browse/AMQNET-299

Modified:
    activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/src/main/csharp/Commands/ConsumerId.cs

Modified: activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/src/main/csharp/Commands/ConsumerId.cs
URL: http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/src/main/csharp/Commands/ConsumerId.cs?rev=1053380&r1=1053379&r2=1053380&view=diff
==============================================================================
--- activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/src/main/csharp/Commands/ConsumerId.cs (original)
+++ activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/src/main/csharp/Commands/ConsumerId.cs Tue Dec 28 16:12:30 2010
@@ -21,8 +21,6 @@ namespace Apache.NMS.Stomp.Commands
 {
     public class ConsumerId : BaseDataStructure
     {
-        public const byte ID_CONSUMERID = 122;
-
         private string key;
 
         private SessionId parentId;
@@ -87,7 +85,7 @@ namespace Apache.NMS.Stomp.Commands
         ///
         public override byte GetDataStructureType()
         {
-            return ID_CONSUMERID;
+            return DataStructureTypes.ConsumerIdType;
         }
 
         ///