Github user anmolnar commented on a diff in the pull request:
https://github.com/apache/zookeeper/pull/490#discussion_r175718655
--- Diff: src/java/test/org/apache/zookeeper/test/ZooKeeperTestClient.java
---
@@ -71,13 +71,14 @@ private void deleteZKDir(ZooKeeper zk, String nodeName)
}
List<String> children1 = zk.getChildren(nodeName, false);
- List<String> c2 = zk.getChildren(nodeName, false, stat);
+ Stat stat2 = new Stat();
--- End diff --
Cool, thanks.---
