summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulian Kast <julian@livio.com>2020-08-27 17:15:57 -0400
committerJulian Kast <julian@livio.com>2020-08-27 17:15:57 -0400
commit9b2831fa6f6c6a46c285bf1050e1762243e417b6 (patch)
tree1844189bf4758efc27f1bbfa56526dc306a2429f
parent64543b97b18d07005cb827435ca0161c3dd9291d (diff)
downloadsdl_android-9b2831fa6f6c6a46c285bf1050e1762243e417b6.tar.gz
Update comments
-rw-r--r--base/src/main/java/com/smartdevicelink/managers/screen/BaseTextAndGraphicManager.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/base/src/main/java/com/smartdevicelink/managers/screen/BaseTextAndGraphicManager.java b/base/src/main/java/com/smartdevicelink/managers/screen/BaseTextAndGraphicManager.java
index e3b2f4242..9c756e758 100644
--- a/base/src/main/java/com/smartdevicelink/managers/screen/BaseTextAndGraphicManager.java
+++ b/base/src/main/java/com/smartdevicelink/managers/screen/BaseTextAndGraphicManager.java
@@ -196,7 +196,7 @@ abstract class BaseTextAndGraphicManager extends BaseSubManager {
}
}
- // If Task is IN_PROGRESS it's not on the queue, we need to cancel it, the operation will take care of stopping it and will call the listener back
+ // If Task is IN_PROGRESS, it’s not on the queue, we need to mark it as cancelled. The task will return at some point when it checks its status and call the listener back
if (updateOperation != null && updateOperation.getState() == Task.IN_PROGRESS) {
updateOperation.cancelTask();
}