summaryrefslogtreecommitdiff
path: root/android_icu4j/src/main/java/android/icu/util/ByteArrayWrapper.java
diff options
context:
space:
mode:
Diffstat (limited to 'android_icu4j/src/main/java/android/icu/util/ByteArrayWrapper.java')
-rw-r--r--android_icu4j/src/main/java/android/icu/util/ByteArrayWrapper.java10
1 files changed, 4 insertions, 6 deletions
diff --git a/android_icu4j/src/main/java/android/icu/util/ByteArrayWrapper.java b/android_icu4j/src/main/java/android/icu/util/ByteArrayWrapper.java
index 4ddf87bf7..6868942c9 100644
--- a/android_icu4j/src/main/java/android/icu/util/ByteArrayWrapper.java
+++ b/android_icu4j/src/main/java/android/icu/util/ByteArrayWrapper.java
@@ -1,7 +1,7 @@
/* GENERATED SOURCE. DO NOT MODIFY. */
/**
*******************************************************************************
- * Copyright (C) 1996-2010, International Business Machines Corporation and *
+ * Copyright (C) 1996-2016, International Business Machines Corporation and *
* others. All Rights Reserved. *
*******************************************************************************
*/
@@ -13,14 +13,12 @@ import java.nio.ByteBuffer;
import android.icu.impl.Utility;
/**
- * <p>
* A simple utility class to wrap a byte array.
- * </p>
* <p>
* Generally passed as an argument object into a method. The method takes
* responsibility of writing into the internal byte array and increasing its
* size when necessary.
- * </p>
+ *
* @author syn wee
*/
public class ByteArrayWrapper implements Comparable<ByteArrayWrapper>
@@ -53,7 +51,7 @@ public class ByteArrayWrapper implements Comparable<ByteArrayWrapper>
* @param bytesToAdopt the byte array to adopt
* @param size the length of valid data in the byte array
* @throws IndexOutOfBoundsException if bytesToAdopt == null and size != 0, or
- * size < 0, or size > bytesToAdopt.length.
+ * size &lt; 0, or size &gt; bytesToAdopt.length.
*/
public ByteArrayWrapper(byte[] bytesToAdopt, int size) {
if ((bytesToAdopt == null && size != 0) || size < 0 || size > bytesToAdopt.length) {
@@ -230,7 +228,7 @@ public class ByteArrayWrapper implements Comparable<ByteArrayWrapper>
/**
* Compare this object to another ByteArrayWrapper, which must not be null.
* @param other the object to compare to.
- * @return a value <0, 0, or >0 as this compares less than, equal to, or
+ * @return a value &lt;0, 0, or &gt;0 as this compares less than, equal to, or
* greater than other.
* @throws ClassCastException if the other object is not a ByteArrayWrapper
*/