(final Object oldState, final Object newState)
| 197 | } |
| 198 | |
| 199 | private final boolean cas(final Object oldState, final Object newState) { |
| 200 | return Unsafe.compareAndSwapObject(this, STATE_OFFSET, oldState, newState); |
| 201 | } |
| 202 | |
| 203 | /** |
| 204 | * Becomes another future. This and result become the same: both are completed |
no test coverage detected