(Object key)
| 4802 | // Cache methods |
| 4803 | |
| 4804 | @Override |
| 4805 | @Nullable |
| 4806 | public V getIfPresent(Object key) { |
| 4807 | return localCache.getIfPresent(key); |
| 4808 | } |
| 4809 | |
| 4810 | @Override |
| 4811 | public V get(K key, final Callable<? extends V> valueLoader) throws ExecutionException { |
nothing calls this directly
no test coverage detected