()
| 55 | } |
| 56 | |
| 57 | public Object deref() { |
| 58 | if(lock != null) |
| 59 | realize(); |
| 60 | if(exception != null) |
| 61 | throw Util.sneakyThrow(exception); |
| 62 | return val; |
| 63 | } |
| 64 | |
| 65 | public boolean isRealized(){ |
| 66 | return lock == null; |
nothing calls this directly
no test coverage detected