EdColeman commented on code in PR #2778:
URL: https://github.com/apache/accumulo/pull/2778#discussion_r926713451


##########
server/base/src/main/java/org/apache/accumulo/server/conf/store/impl/PropCacheCaffeineImpl.java:
##########
@@ -113,6 +115,17 @@ public void removeAll() {
     return cache.getIfPresent(propStoreKey);
   }
 
+  /**
+   * This returns a weakly consistent view of the entries in the cache - 
changes may or may not be
+   * reflected in the view and it is undefined which changes (including 
eviction) will be visible to
+   * the view.
+   *
+   * @return a map weakly consistent view of the underlying cache entries.
+   */
+  public Map<PropStoreKey<?>,VersionedProperties> asMap() {
+    return Collections.unmodifiableMap(cache.asMap());
+  }

Review Comment:
   This method has been removed.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to