()
| 102 | } |
| 103 | |
| 104 | @SuppressWarnings("unchecked") |
| 105 | public V newValue() { |
| 106 | try { |
| 107 | return (V)valueFactory.invoke(); |
| 108 | } catch (Throwable e) { // MethodHandle.invoke |
| 109 | throw Task.forceThrow(e); |
| 110 | } |
| 111 | } |
| 112 | |
| 113 | @SuppressWarnings("unchecked") |
| 114 | public V get(K key) { |
no test coverage detected