summaryrefslogtreecommitdiff
path: root/core/java/android/annotation/FloatRange.java
diff options
context:
space:
mode:
authorNeil Fuller <nfuller@google.com>2015-11-30 09:51:33 +0000
committerNeil Fuller <nfuller@google.com>2015-12-02 14:24:11 +0000
commit71fbb81b14958b80fe55738607740c6630e4e9da (patch)
tree1f1be8961057d82b54b99637b8e6b423ff621575 /core/java/android/annotation/FloatRange.java
parent355a74f2842b44b0ae07c5f982c50761d47d9ca0 (diff)
Fix @code escapes
The body of {@code} must not be HTML escaped. This is one of several changes that fix the source in conjunction with a doclava fix. Bug: 25757239 Change-Id: Ib38a0fa2dd2a3d68e467f78a812071e763d7e881
Diffstat (limited to 'core/java/android/annotation/FloatRange.java')
-rw-r--r--core/java/android/annotation/FloatRange.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/java/android/annotation/FloatRange.java b/core/java/android/annotation/FloatRange.java
index 3a7c15015b49..05b51680b1b0 100644
--- a/core/java/android/annotation/FloatRange.java
+++ b/core/java/android/annotation/FloatRange.java
@@ -28,12 +28,12 @@ import static java.lang.annotation.RetentionPolicy.SOURCE;
* Denotes that the annotated element should be a float or double in the given range
* <p>
* Example:
- * <pre>{@code
+ * <pre><code>
* &#64;FloatRange(from=0.0,to=1.0)
* public float getAlpha() {
* ...
* }
- * }</pre>
+ * </code></pre>
*
* @hide
*/