| 11 | package clojure.lang; |
| 12 | |
| 13 | public final class Reduced implements IDeref{ |
| 14 | Object val; |
| 15 | |
| 16 | public Reduced(Object val){ |
| 17 | this.val = val; |
| 18 | } |
| 19 | |
| 20 | public Object deref(){ |
| 21 | return val; |
| 22 | } |
| 23 | } |
nothing calls this directly
no outgoing calls
no test coverage detected