[hornetq-commits] JBoss hornetq SVN: r10879 - trunk/hornetq-core/src/main/java/org/hornetq/core/client/impl.

do-not-reply at jboss.org do-not-reply at jboss.org
Mon Jun 27 09:36:50 EDT 2011


Author: borges
Date: 2011-06-27 09:36:50 -0400 (Mon, 27 Jun 2011)
New Revision: 10879

Modified:
   trunk/hornetq-core/src/main/java/org/hornetq/core/client/impl/ServerLocatorInternal.java
Log:
Remove unused import

Modified: trunk/hornetq-core/src/main/java/org/hornetq/core/client/impl/ServerLocatorInternal.java
===================================================================
--- trunk/hornetq-core/src/main/java/org/hornetq/core/client/impl/ServerLocatorInternal.java	2011-06-27 13:32:44 UTC (rev 10878)
+++ trunk/hornetq-core/src/main/java/org/hornetq/core/client/impl/ServerLocatorInternal.java	2011-06-27 13:36:50 UTC (rev 10879)
@@ -13,14 +13,13 @@
 
 package org.hornetq.core.client.impl;
 
-import org.hornetq.api.core.HornetQException;
+import java.util.concurrent.Executor;
+
 import org.hornetq.api.core.Pair;
 import org.hornetq.api.core.TransportConfiguration;
 import org.hornetq.api.core.client.ClientSessionFactory;
 import org.hornetq.api.core.client.ServerLocator;
 
-import java.util.concurrent.Executor;
-
 /**
  * A ServerLocatorInternal
  *
@@ -31,7 +30,7 @@
 public interface ServerLocatorInternal extends ServerLocator
 {
    void start(Executor executor) throws Exception;
-   
+
    void factoryClosed(final ClientSessionFactory factory);
 
    void setNodeID(String nodeID);
@@ -53,7 +52,7 @@
    void setClusterTransportConfiguration(TransportConfiguration tc);
 
    boolean isBackup();
-   
+
    void setBackup(boolean backup);
 
    Topology getTopology();



More information about the hornetq-commits mailing list