Author: borges
Date: 2012-01-03 06:53:58 -0500 (Tue, 03 Jan 2012)
New Revision: 11949
Modified:
trunk/hornetq-core/src/main/java/org/hornetq/core/client/impl/ClientSessionFactoryImpl.java
Log:
Remove unused variables
Modified:
trunk/hornetq-core/src/main/java/org/hornetq/core/client/impl/ClientSessionFactoryImpl.java
===================================================================
---
trunk/hornetq-core/src/main/java/org/hornetq/core/client/impl/ClientSessionFactoryImpl.java 2012-01-03
11:53:37 UTC (rev 11948)
+++
trunk/hornetq-core/src/main/java/org/hornetq/core/client/impl/ClientSessionFactoryImpl.java 2012-01-03
11:53:58 UTC (rev 11949)
@@ -1511,16 +1511,14 @@
public class CloseRunnable implements Runnable
{
private final CoreRemotingConnection conn;
- private int i = 0;
- private boolean removed = false;
- private boolean actuallRemoved = false;
+
private CloseRunnable(CoreRemotingConnection conn)
{
this.conn = conn;
}
- // Must be executed on new thread since cannot block the netty thread for a long
time and fail can
- // cause reconnect loop
+ // Must be executed on new thread since cannot block the Netty thread for a long
time and fail
+ // can cause reconnect loop
public void run()
{
try