Github user srdo commented on a diff in the pull request:
https://github.com/apache/storm/pull/2836#discussion_r218140867
--- Diff:
storm-server/src/main/java/org/apache/storm/daemon/nimbus/Nimbus.java ---
@@ -4624,7 +4569,7 @@ public boolean isRemoteBlobExists(String blobKey)
throws AuthorizationException,
return true;
}
- private static final class Assoc<K, V> implements UnaryOperator<Map<K,
V>> {
+ static final class Assoc<K, V> implements UnaryOperator<Map<K, V>> {
--- End diff --
Assoc and Dissoc don't seem to be used in new places, so is making them
package private still necessary?
---