summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Alan Stokes <alanstokes@google.com> 2019-03-04 08:47:12 -0800
committer android-build-merger <android-build-merger@google.com> 2019-03-04 08:47:12 -0800
commit555ef78e35513efcbbf8db448521e4055b0ee302 (patch)
tree7e98c9ea234340134e8a9cb1859761f9cf09a7c1
parent769c42790bea7224502c2464e1af044c1d5d592b (diff)
parent4514c01068d61eef366416763574800eea13372a (diff)
Merge "Fix javadoc HTML escaping." am: 693e023bac
am: 4514c01068 Change-Id: Ie13ff32fc83bfe17c90c3c52955a2ec639cf6d14
-rw-r--r--graphics/java/android/graphics/drawable/GradientDrawable.java4
-rw-r--r--telephony/java/android/provider/Telephony.java4
-rw-r--r--telephony/java/android/telephony/TelephonyManager.java4
3 files changed, 6 insertions, 6 deletions
diff --git a/graphics/java/android/graphics/drawable/GradientDrawable.java b/graphics/java/android/graphics/drawable/GradientDrawable.java
index d34d461e8a87..2a286afd7b63 100644
--- a/graphics/java/android/graphics/drawable/GradientDrawable.java
+++ b/graphics/java/android/graphics/drawable/GradientDrawable.java
@@ -579,9 +579,9 @@ public class GradientDrawable extends Drawable {
* The default value for this property is {@code false}.
* <p>
* <strong>Note</strong>: This property corresponds to the
- * {@code android:useLevel} attribute on the inner {@code &lt;gradient&gt;}
+ * {@code android:useLevel} attribute on the inner {@code <gradient>}
* tag, NOT the {@code android:useLevel} attribute on the outer
- * {@code &lt;shape&gt;} tag. For example,
+ * {@code <shape>} tag. For example,
* <pre>{@code
* <shape ...>
* <gradient
diff --git a/telephony/java/android/provider/Telephony.java b/telephony/java/android/provider/Telephony.java
index 1dadaeec2143..a09aed7127e2 100644
--- a/telephony/java/android/provider/Telephony.java
+++ b/telephony/java/android/provider/Telephony.java
@@ -1127,8 +1127,8 @@ public final class Telephony {
* Broadcast Action: A debug code has been entered in the dialer. This intent is
* broadcast by the system and OEM telephony apps may need to receive these broadcasts.
* These "secret codes" are used to activate developer menus by dialing certain codes.
- * And they are of the form {@code *#*#&lt;code&gt;#*#*}. The intent will have the data
- * URI: {@code android_secret_code://&lt;code&gt;}. It is possible that a manifest
+ * And they are of the form {@code *#*#<code>#*#*}. The intent will have the data
+ * URI: {@code android_secret_code://<code>}. It is possible that a manifest
* receiver would be woken up even if it is not currently running.
*
* <p>Requires {@code android.Manifest.permission#CONTROL_INCALL_EXPERIENCE} to
diff --git a/telephony/java/android/telephony/TelephonyManager.java b/telephony/java/android/telephony/TelephonyManager.java
index 52115cb96ff0..e5466a2535eb 100644
--- a/telephony/java/android/telephony/TelephonyManager.java
+++ b/telephony/java/android/telephony/TelephonyManager.java
@@ -2762,8 +2762,8 @@ public class TelephonyManager {
* (see {@link #hasCarrierPrivileges}).
* <p>
* These "secret codes" are used to activate developer menus by dialing certain codes.
- * And they are of the form {@code *#*#&lt;code&gt;#*#*}. The intent will have the data
- * URI: {@code android_secret_code://&lt;code&gt;}. It is possible that a manifest
+ * And they are of the form {@code *#*#<code>#*#*}. The intent will have the data
+ * URI: {@code android_secret_code://<code>}. It is possible that a manifest
* receiver would be woken up even if it is not currently running.
* <p>
* It is supposed to replace {@link android.provider.Telephony.Sms.Intents#SECRET_CODE_ACTION}