Advertisement
Barteks2x

Untitled

Jan 25th, 2017
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.18 KB | None | 0 0
  1.     public boolean hasEntry(K key) throws IOException {
  2.         boolean[] ret = {false};
  3.         this.regionProvider.forExistingRegion(key, r -> ret[0] = r.hasValue(key));
  4.         return ret[0];
  5.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement