[jboss-cvs] JBossRemoting/src/main/org/jboss/remoting ...
Ron Sigal
ron_sigal at yahoo.com
Tue Aug 14 02:23:07 EDT 2007
User: rsigal
Date: 07/08/14 02:23:07
Modified: src/main/org/jboss/remoting Tag: remoting_2_2_0_GA
MicroRemoteClientInvoker.java
Log:
JBREM-783: In establish, move definition of tempException out of loop.
Revision Changes Path
No revision
No revision
1.7.2.14.4.5 +2 -3 JBossRemoting/src/main/org/jboss/remoting/MicroRemoteClientInvoker.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: MicroRemoteClientInvoker.java
===================================================================
RCS file: /cvsroot/jboss/JBossRemoting/src/main/org/jboss/remoting/MicroRemoteClientInvoker.java,v
retrieving revision 1.7.2.14.4.4
retrieving revision 1.7.2.14.4.5
diff -u -b -r1.7.2.14.4.4 -r1.7.2.14.4.5
--- MicroRemoteClientInvoker.java 8 Aug 2007 05:44:22 -0000 1.7.2.14.4.4
+++ MicroRemoteClientInvoker.java 14 Aug 2007 06:23:07 -0000 1.7.2.14.4.5
@@ -27,7 +27,7 @@
*
* @author <a href="mailto:jhaynie at vocalocity.net">Jeff Haynie</a>
* @author <a href="mailto:telrod at e2technologies.net">Tom Elrod</a>
- * @version $Revision: 1.7.2.14.4.4 $
+ * @version $Revision: 1.7.2.14.4.5 $
*/
public abstract class MicroRemoteClientInvoker extends AbstractInvoker implements ClientInvoker
{
@@ -450,11 +450,10 @@
int clientCount;
int attemptCount = 0;
+ Exception tempException = null;
while (true)
{
- Exception tempException = null;
-
synchronized (clientLeaseLock)
{
clientCount = leasePinger.getClients().size();
More information about the jboss-cvs-commits
mailing list