File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
firebase-crashlytics/src/main/java/com/google/firebase/crashlytics/internal Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -56,8 +56,7 @@ public ExecutorService getExecutor() {
56
56
* Submits a <code>Callable</code> task for asynchronous execution on the executor.
57
57
*
58
58
* <p>Returns a <code>Task</code> which will be resolved upon successful completion of the
59
- * callable, throws an <code>ExecutionException</code> if the callable throws an exception, or
60
- * throws a <code>CancellationException</code> if the task is cancelled.
59
+ * callable, or throws an <code>ExecutionException</code> if the callable throws an exception.
61
60
*/
62
61
public <T > Task <T > submit (Callable <T > callable ) {
63
62
synchronized (tailLock ) {
@@ -76,8 +75,7 @@ public <T> Task<T> submit(Callable<T> callable) {
76
75
* Submits a <code>Runnable</code> task for asynchronous execution on the executor.
77
76
*
78
77
* <p>Returns a <code>Task</code> which will be resolved with null upon successful completion of
79
- * the runnable, throws an <code>ExecutionException</code> if the runnable throws an exception, or
80
- * throws a <code>CancellationException</code> if the task is cancelled.
78
+ * the runnable, or throws an <code>ExecutionException</code> if the runnable throws an exception.
81
79
*/
82
80
public Task <Void > submit (Runnable runnable ) {
83
81
synchronized (tailLock ) {
You can’t perform that action at this time.
0 commit comments