Github user lvfangmin commented on a diff in the pull request:
https://github.com/apache/zookeeper/pull/548#discussion_r198228442
--- Diff: src/java/main/org/apache/zookeeper/client/FourLetterWordMain.java
---
@@ -86,7 +86,7 @@ public static String send4LetterWord(String host, int
port, String cmd, boolean
throws IOException, SSLContextException {
LOG.info("connecting to {} {}", host, port);
Socket sock;
- InetSocketAddress hostaddress= host != null ? new
InetSocketAddress(host, port) :
+ InetSocketAddress hostaddress = host != null ? new
InetSocketAddress(host, port) :
--- End diff --
@mjeelanimsft generally, this is due to the auto-format in the editor, but
I think we should remove this change from this diff, given we haven't changed
other logic except this one.
---