ARTEMIS-2637 Fixing checkstyle

This commit is contained in:
Clebert Suconic 2020-02-28 16:35:25 -05:00
parent ea3c592c82
commit 6a04a33e6e
1 changed files with 6 additions and 2 deletions

View File

@ -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;