summaryrefslogtreecommitdiff
path: root/navit/android
diff options
context:
space:
mode:
authormvglasow <michael -at- vonglasow.com>2020-08-11 21:34:16 +0200
committermvglasow <michael -at- vonglasow.com>2020-08-11 21:34:16 +0200
commit7d0ecff1676788d7e30875f0f8936b95eeb470a8 (patch)
tree8ca500eaaaf487b426b1b8c2334ba9bd7e081f1d /navit/android
parent0a17ef1898eb7cd865350c9986661cc194237a6c (diff)
downloadnavit-7d0ecff1676788d7e30875f0f8936b95eeb470a8.tar.gz
Refactor:traffic:Make sanity check happy
Signed-off-by: mvglasow <michael -at- vonglasow.com>
Diffstat (limited to 'navit/android')
-rw-r--r--navit/android/src/org/navitproject/navit/NavitTraff.java14
1 files changed, 7 insertions, 7 deletions
diff --git a/navit/android/src/org/navitproject/navit/NavitTraff.java b/navit/android/src/org/navitproject/navit/NavitTraff.java
index 7ce8d51f4..4591f3a62 100644
--- a/navit/android/src/org/navitproject/navit/NavitTraff.java
+++ b/navit/android/src/org/navitproject/navit/NavitTraff.java
@@ -249,7 +249,7 @@ public class NavitTraff extends BroadcastReceiver {
/**
* @brief Fetches messages from a content provider.
- *
+ *
* @param context
* @param uri The content provider URI
*/
@@ -276,22 +276,22 @@ public class NavitTraff extends BroadcastReceiver {
/**
* @brief Sends a TraFF intent to a source.
- *
+ *
* This encapsulates most of the low-level Android handling.
- *
+ *
* If the recipient specified in {@code packageName} declares multiple receivers for the intent in its
* manifest, a separate intent will be delivered to each of them. The intent will not be delivered to
* receivers registered at runtime.
- *
+ *
* All intents are sent as explicit ordered broadcasts. This means two things:
- *
+ *
* Any app which declares a matching receiver in its manifest will be woken up to process the intent.
* This works even with certain Android 7 builds which restrict intent delivery to apps which are not
* currently running.
- *
+ *
* It is safe for the recipient to unconditionally set result data. If the recipient does not set result
* data, the result will have a result code of {@link #RESULT_INTERNAL_ERROR}, no data and no extras.
- *
+ *
* @param context The context
* @param action The intent action.
* @param data The intent data (for TraFF, this is the content provider URI), or null