summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author yinxu <yinxu@google.com> 2017-11-08 16:10:16 -0800
committer yinxu <yinxu@google.com> 2017-11-09 09:56:45 -0800
commit392b0f13394ba4f665c79fac3e52733cd60d0c59 (patch)
tree1d25de12726d336ce37c531e3a18962f711b6449
parent5c7de22a0607462b1db44d113e5e7ced89142a6a (diff)
Fix the comments of onError() callback
Bug: 63718613 Test: Basic telephony sanity Change-Id: Ibb4bf5fd907666d72c40bb0caf505e187937467b
-rw-r--r--telephony/java/android/telephony/TelephonyScanManager.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/telephony/java/android/telephony/TelephonyScanManager.java b/telephony/java/android/telephony/TelephonyScanManager.java
index 92a21b6fb85f..7bcdcdcc30ba 100644
--- a/telephony/java/android/telephony/TelephonyScanManager.java
+++ b/telephony/java/android/telephony/TelephonyScanManager.java
@@ -73,8 +73,8 @@ public final class TelephonyScanManager {
/**
* Informs the user that there is some error about the scan.
*
- * This callback will be called whenever there is any error about the scan, but the scan
- * won't stop unless the onComplete() callback is called.
+ * This callback will be called whenever there is any error about the scan, and the scan
+ * will be terminated. onComplete() will NOT be called.
*/
public void onError(int error) {}
}