Skip to content

Commit cce69df

Browse files
committed
Javadoc
1 parent bd78546 commit cce69df

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

firebase-crashlytics/src/main/java/com/google/firebase/crashlytics/internal/CrashlyticsWorker.java

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,7 @@ public ExecutorService getExecutor() {
5656
* Submits a <code>Callable</code> task for asynchronous execution on the executor.
5757
*
5858
* <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.
6160
*/
6261
public <T> Task<T> submit(Callable<T> callable) {
6362
synchronized (tailLock) {
@@ -76,8 +75,7 @@ public <T> Task<T> submit(Callable<T> callable) {
7675
* Submits a <code>Runnable</code> task for asynchronous execution on the executor.
7776
*
7877
* <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.
8179
*/
8280
public Task<Void> submit(Runnable runnable) {
8381
synchronized (tailLock) {

0 commit comments

Comments
 (0)