Github user michaelandrepearce commented on a diff in the pull request:
https://github.com/apache/activemq-artemis/pull/1833#discussion_r165284845
--- Diff:
artemis-core-client/src/main/java/org/apache/activemq/artemis/core/remoting/impl/netty/NettyConnector.java
---
@@ -388,23 +392,7 @@ public NettyConnector(final Map<String, Object>
configuration,
@Override
public String toString() {
- return "NettyConnector [host=" + host +
- ", port=" +
- port +
- ", httpEnabled=" +
- httpEnabled +
- ", httpUpgradeEnabled=" +
- httpUpgradeEnabled +
- ", useServlet=" +
- useServlet +
- ", servletPath=" +
- servletPath +
- ", sslEnabled=" +
- sslEnabled +
- ", useNio=" +
- true +
- getHttpUpgradeInfo() +
- "]";
+ return "NettyConnector [host=" + host + ", port=" + port + ",
httpEnabled=" + httpEnabled + ", httpUpgradeEnabled=" + httpUpgradeEnabled + ",
useServlet=" + useServlet + ", servletPath=" + servletPath + ", sslEnabled=" +
sslEnabled + ", useNio=" + true + getHttpUpgradeInfo() + "]";
--- End diff --
can you undo the formatting change please.
---