summaryrefslogtreecommitdiff
path: root/navit
diff options
context:
space:
mode:
authormvglasow <michael -at- vonglasow.com>2020-08-11 23:18:51 +0200
committermvglasow <michael -at- vonglasow.com>2020-08-11 23:18:51 +0200
commit507944a6f1aae92ce9ad697cc3949cfeb468b5f9 (patch)
treef9359d5bae8b5c03a025a531d8c031fd05aed50e /navit
parent2a86c6e1115490dac5a5235946fd16f385600126 (diff)
downloadnavit-507944a6f1aae92ce9ad697cc3949cfeb468b5f9.tar.gz
Refactor:traffic/traff_android:Fix Javadoc formatting
Signed-off-by: mvglasow <michael -at- vonglasow.com>
Diffstat (limited to 'navit')
-rw-r--r--navit/android/src/org/navitproject/navit/NavitTraff.java14
1 files changed, 6 insertions, 8 deletions
diff --git a/navit/android/src/org/navitproject/navit/NavitTraff.java b/navit/android/src/org/navitproject/navit/NavitTraff.java
index 495209bec..9292cd408 100644
--- a/navit/android/src/org/navitproject/navit/NavitTraff.java
+++ b/navit/android/src/org/navitproject/navit/NavitTraff.java
@@ -248,7 +248,7 @@ public class NavitTraff extends BroadcastReceiver {
}
/**
- * @brief Fetches messages from a content provider.
+ * Fetches messages from a content provider.
*
* @param context The context to use for the content resolver
* @param uri The content provider URI
@@ -275,20 +275,18 @@ public class NavitTraff extends BroadcastReceiver {
}
/**
- * @brief Sends a TraFF intent to a source.
- *
- * This encapsulates most of the low-level Android handling.
- *
+ * Sends a TraFF intent to a source. This encapsulates most of the low-level Android handling.
+ * <p>
* 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.
- *
+ * <p>
* All intents are sent as explicit ordered broadcasts. This means two things:
- *
+ * <p>
* 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.
- *
+ * <p>
* 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.
*