From a9b5b2aab060886396ec865b36fefa13b3d0c364 Mon Sep 17 00:00:00 2001 From: Alan Stokes Date: Thu, 28 Feb 2019 16:45:47 +0000 Subject: Fix javadoc HTML escaping. HTLM special characters ('<', '>' and '&') don't need to be escaped inside {@code}, even though they do elsewhere in javadoc. And in fact they shouldn't be - because if they are escaped then the escaped version shows up verbatim in the developer docs. See for example: https://developer.android.com/reference/android/graphics/drawable/GradientDrawable https://developer.android.com/reference/android/support/v13/view/inputmethod/InputConnectionCompat This change just removes the escaping to fix the public documentation. Test: N/A (only comment lines changed) Change-Id: I131b3b3e26547e30cff7b67514d177c48926bb26 --- graphics/java/android/graphics/drawable/GradientDrawable.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'graphics/java') 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}. *

* Note: This property corresponds to the - * {@code android:useLevel} attribute on the inner {@code <gradient>} + * {@code android:useLevel} attribute on the inner {@code } * tag, NOT the {@code android:useLevel} attribute on the outer - * {@code <shape>} tag. For example, + * {@code } tag. For example, *

{@code
      * 
      *