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 2013/05/20 22:54:33 UTC

svn commit: r1484593 - /activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/MessageConsumer.cs

Author: tabish
Date: Mon May 20 20:54:33 2013
New Revision: 1484593

URL: http://svn.apache.org/r1484593
Log:
Couple small cleanups.

Modified:
    activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/MessageConsumer.cs

Modified: activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/MessageConsumer.cs
URL: http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/MessageConsumer.cs?rev=1484593&r1=1484592&r2=1484593&view=diff
==============================================================================
--- activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/MessageConsumer.cs (original)
+++ activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/MessageConsumer.cs Mon May 20 20:54:33 2013
@@ -417,11 +417,6 @@ namespace Apache.NMS.ActiveMQ
 				return;
 			}
 
-			if(disposing)
-			{
-				// Dispose managed code here.
-			}
-
 			try
 			{
 				Close();
@@ -1574,7 +1569,7 @@ namespace Apache.NMS.ActiveMQ
 			}
 		}
 
-		private bool IsAutoAcknowledgeEach
+		protected bool IsAutoAcknowledgeEach
 		{
 			get
 			{
@@ -1588,12 +1583,12 @@ namespace Apache.NMS.ActiveMQ
 			get { return this.session.IsDupsOkAcknowledge && !this.info.Destination.IsQueue; }
 		}
 
-		private bool IsIndividualAcknowledge
+        protected bool IsIndividualAcknowledge
 		{
 			get { return this.session.IsIndividualAcknowledge; }
 		}
 
-		private bool IsClientAcknowledge
+        protected bool IsClientAcknowledge
 		{
 			get { return this.session.IsClientAcknowledge; }
 		}