Skip to content
This repository was archived by the owner on Dec 17, 2020. It is now read-only.

Commit 7b3ae2b

Browse files
committed
Tiny Javadoc update
1 parent 9dc6fec commit 7b3ae2b

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

library/src/main/java/org/neotech/library/retainabletasks/TaskManager.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,8 @@ public interface TaskAttachListener {
9999
/**
100100
* Checks if the {@link Task} with the given tag has delivered it's result.
101101
* @param tag The tag which identifies the Task to check.
102-
* @return true if the Task did deliver it's result, false if not.
102+
* @return true if the Task did deliver it's result, false if the Task did not deliver it's
103+
* result or the task is not found using {@link #getTask(String)}.
103104
* @see Task#isResultDelivered()
104105
*/
105106
@MainThread
@@ -109,7 +110,7 @@ public interface TaskAttachListener {
109110
* Checks if the {@link Task} with the given tag is running.
110111
* @param tag The tag which identifies the Task to check.
111112
* @return true if the Task is running ({@link Task#doInBackground()} is executing), false if
112-
* not.
113+
* the Task is not running or the task is not found using {@link #getTask(String)}.
113114
* @see Task#isRunning()
114115
*/
115116
@MainThread

0 commit comments

Comments
 (0)