[jboss-remoting-commits] JBoss Remoting SVN: r6226 - remoting2/branches/2.2/src/main/org/jboss/remoting.

jboss-remoting-commits at lists.jboss.org jboss-remoting-commits at lists.jboss.org
Wed Jan 26 20:36:20 EST 2011


Author: ron.sigal at jboss.com
Date: 2011-01-26 20:36:20 -0500 (Wed, 26 Jan 2011)
New Revision: 6226

Modified:
   remoting2/branches/2.2/src/main/org/jboss/remoting/MicroRemoteClientInvoker.java
Log:
JBREM-1269: Removed synchronization from getLeasePinger().

Modified: remoting2/branches/2.2/src/main/org/jboss/remoting/MicroRemoteClientInvoker.java
===================================================================
--- remoting2/branches/2.2/src/main/org/jboss/remoting/MicroRemoteClientInvoker.java	2011-01-27 01:35:36 UTC (rev 6225)
+++ remoting2/branches/2.2/src/main/org/jboss/remoting/MicroRemoteClientInvoker.java	2011-01-27 01:36:20 UTC (rev 6226)
@@ -670,9 +670,6 @@
 
    protected LeasePinger getLeasePinger()
    {
-      synchronized(clientLeaseLock)
-      {
-         return leasePinger;
-      }
+      return leasePinger;
    }
 }



More information about the jboss-remoting-commits mailing list