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/07/07 19:47:20 UTC

svn commit: r961440 - /activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/Util/CountDownLatch.cs

Author: tabish
Date: Wed Jul  7 17:47:20 2010
New Revision: 961440

URL: http://svn.apache.org/viewvc?rev=961440&view=rev
Log:
* CountDownLatch.cs: revert previous change

Modified:
    activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/Util/CountDownLatch.cs

Modified: activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/Util/CountDownLatch.cs
URL: http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/Util/CountDownLatch.cs?rev=961440&r1=961439&r2=961440&view=diff
==============================================================================
--- activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/Util/CountDownLatch.cs (original)
+++ activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/Util/CountDownLatch.cs Wed Jul  7 17:47:20 2010
@@ -29,11 +29,6 @@ namespace Apache.NMS.Util
 			remaining = i;
 		}
 
-		public int Count
-		{
-			get{ return this.remaining; }
-		}
-		
 		public void countDown()
 		{
 			lock(mutex)