()
| 60 | |
| 61 | private static final ThreadLocal<Tailrec> local = new ThreadLocal<Tailrec>() { |
| 62 | @Override |
| 63 | public Tailrec initialValue() { |
| 64 | return new Tailrec(); |
| 65 | } |
| 66 | }; |
| 67 | |
| 68 | private ArrayList<Runnable> tasks = null; |
nothing calls this directly
no outgoing calls
no test coverage detected