()
| 91 | private List<Continuation<TResult, Void>> continuations; |
| 92 | |
| 93 | private Task() { |
| 94 | continuations = new ArrayList<Continuation<TResult, Void>>(); |
| 95 | } |
| 96 | |
| 97 | /** |
| 98 | * Creates a TaskCompletionSource that orchestrates a Task. This allows the creator of a task to |
nothing calls this directly
no outgoing calls
no test coverage detected