You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by cl...@apache.org on 2020/02/28 21:40:48 UTC

[activemq-artemis] branch master updated: ARTEMIS-2637 Fixing checkstyle

This is an automated email from the ASF dual-hosted git repository.

clebertsuconic pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/activemq-artemis.git


The following commit(s) were added to refs/heads/master by this push:
     new 6a04a33  ARTEMIS-2637 Fixing checkstyle
6a04a33 is described below

commit 6a04a33e6e700e89d8248dde9453c248403a865d
Author: Clebert Suconic <cl...@apache.org>
AuthorDate: Fri Feb 28 16:35:25 2020 -0500

    ARTEMIS-2637 Fixing checkstyle
---
 .../activemq/artemis/core/client/impl/ServerLocatorImpl.java      | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/artemis-core-client/src/main/java/org/apache/activemq/artemis/core/client/impl/ServerLocatorImpl.java b/artemis-core-client/src/main/java/org/apache/activemq/artemis/core/client/impl/ServerLocatorImpl.java
index f06361a..7043149 100644
--- a/artemis-core-client/src/main/java/org/apache/activemq/artemis/core/client/impl/ServerLocatorImpl.java
+++ b/artemis-core-client/src/main/java/org/apache/activemq/artemis/core/client/impl/ServerLocatorImpl.java
@@ -64,7 +64,11 @@ import org.apache.activemq.artemis.spi.core.remoting.ClientProtocolManager;
 import org.apache.activemq.artemis.spi.core.remoting.ClientProtocolManagerFactory;
 import org.apache.activemq.artemis.spi.core.remoting.Connector;
 import org.apache.activemq.artemis.uri.ServerLocatorParser;
-import org.apache.activemq.artemis.utils.*;
+import org.apache.activemq.artemis.utils.ActiveMQThreadFactory;
+import org.apache.activemq.artemis.utils.ActiveMQThreadPoolExecutor;
+import org.apache.activemq.artemis.utils.ClassloadingUtil;
+import org.apache.activemq.artemis.utils.ThreadDumpUtil;
+import org.apache.activemq.artemis.utils.UUIDGenerator;
 import org.apache.activemq.artemis.utils.actors.Actor;
 import org.apache.activemq.artemis.utils.actors.OrderedExecutor;
 import org.apache.activemq.artemis.utils.uri.FluentPropertyBeanIntrospectorWithIgnores;
@@ -123,7 +127,7 @@ public final class ServerLocatorImpl implements ServerLocatorInternal, Discovery
    /** This specifies serverLocator.connect was used,
     *  which means it's a cluster connection.
     *  We should not use retries */
-   private volatile transient boolean disableDiscoveryRetries = false;
+   private volatile boolean disableDiscoveryRetries = false;
 
    // if the system should shutdown the pool when shutting down
    private transient boolean shutdownPool;