Github user hanm commented on a diff in the pull request: https://github.com/apache/zookeeper/pull/545#discussion_r208451880 --- Diff: src/java/main/org/apache/zookeeper/server/ZooKeeperServer.java --- @@ -122,8 +122,8 @@ final Map<String, ChangeRecord> outstandingChangesForPath = new HashMap<String, ChangeRecord>(); - protected ServerCnxnFactory serverCnxnFactory; - protected ServerCnxnFactory secureServerCnxnFactory; + ServerCnxnFactory serverCnxnFactory; --- End diff -- `protected` is removed here. Is this intended?
---