summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoey Grover <joeygrover@gmail.com>2018-10-08 11:32:20 -0400
committerJoey Grover <joeygrover@gmail.com>2018-10-08 11:32:20 -0400
commit145d3257819509ad2c2cc686906f1f4e82e2a5de (patch)
tree2afc29901d679a35a291e881d8c72042ec3fae05
parent14a4931e136d65ec91812a528623ba37b452b94f (diff)
downloadsdl_android-145d3257819509ad2c2cc686906f1f4e82e2a5de.tar.gz
Correct sendExplicitBroadcast javaodc
-rw-r--r--sdl_android/src/main/java/com/smartdevicelink/util/AndroidTools.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/sdl_android/src/main/java/com/smartdevicelink/util/AndroidTools.java b/sdl_android/src/main/java/com/smartdevicelink/util/AndroidTools.java
index 6d4a46faa..62f379031 100644
--- a/sdl_android/src/main/java/com/smartdevicelink/util/AndroidTools.java
+++ b/sdl_android/src/main/java/com/smartdevicelink/util/AndroidTools.java
@@ -126,8 +126,8 @@ public class AndroidTools {
* Sends the provided intent to the specified destinations making it an explicit intent, rather
* than an implicit intent. A direct replacement of sendBroadcast(Intent). As of Android 8.0
* (API 26+) implicit broadcasts are no longer sent to broadcast receivers that are declared via
- * the AndroidManifest. Ihe method will also send the broadcast implicitly if no list of apps is
- * provided for backwards comparability.
+ * the AndroidManifest. If no apps are found to receive the intent, this method will send the
+ * broadcast implicitly if no list of apps is provided.
*
* @param intent - the intent to send explicitly
* @param apps - the list of apps that this broadcast will be sent to. If null is passed in