summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Steven Moreland <smoreland@google.com> 2022-08-02 20:13:56 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2022-08-02 20:13:56 +0000
commitc2bd9f481f731f65d0cf5a9af59bdeeb445b1658 (patch)
tree872725f6f2c02d4a541f8874ec4a7aef197cdef4
parentef9dfbfa4af24190c6119e5c26325319a1c2c70e (diff)
parentc63f3f259cf9d955286162effca35e5495f5cd89 (diff)
Merge "Reword ambiguous documentation in Parcel"
-rw-r--r--core/java/android/os/Parcel.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/android/os/Parcel.java b/core/java/android/os/Parcel.java
index 9649d3875342..5eb4d8e3c0a4 100644
--- a/core/java/android/os/Parcel.java
+++ b/core/java/android/os/Parcel.java
@@ -767,7 +767,7 @@ public final class Parcel {
}
/**
- * Set the bytes in data to be the raw bytes of this Parcel.
+ * Fills the raw bytes of this Parcel with the supplied data.
*/
public final void unmarshall(@NonNull byte[] data, int offset, int length) {
nativeUnmarshall(mNativePtr, data, offset, length);