am ac7b9dd3: am 42d3b66f: am e0852368: Fix a few typos in Parcel.java.

* commit 'ac7b9dd39f64118a2129c17cdc7b6c93e53e1c42':
  Fix a few typos in Parcel.java.
This commit is contained in:
John Spurlock
2015-02-05 20:39:36 +00:00
committed by Android Git Automerger

View File

@@ -276,7 +276,7 @@ public final class Parcel {
private static native byte[] nativeMarshall(long nativePtr); private static native byte[] nativeMarshall(long nativePtr);
private static native void nativeUnmarshall( private static native void nativeUnmarshall(
long nativePtr, byte[] data, int offest, int length); long nativePtr, byte[] data, int offset, int length);
private static native void nativeAppendFrom( private static native void nativeAppendFrom(
long thisNativePtr, long otherNativePtr, int offset, int length); long thisNativePtr, long otherNativePtr, int offset, int length);
private static native boolean nativeHasFileDescriptors(long nativePtr); private static native boolean nativeHasFileDescriptors(long nativePtr);
@@ -438,8 +438,8 @@ public final class Parcel {
/** /**
* Set the bytes in data to be the raw bytes of this Parcel. * Set the bytes in data to be the raw bytes of this Parcel.
*/ */
public final void unmarshall(byte[] data, int offest, int length) { public final void unmarshall(byte[] data, int offset, int length) {
nativeUnmarshall(mNativePtr, data, offest, length); nativeUnmarshall(mNativePtr, data, offset, length);
} }
public final void appendFrom(Parcel parcel, int offset, int length) { public final void appendFrom(Parcel parcel, int offset, int length) {