Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ac7b9dd3 authored by John Spurlock's avatar John Spurlock Committed by Android Git Automerger
Browse files

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

* commit '42d3b66f':
  Fix a few typos in Parcel.java.
parents c6ca8600 42d3b66f
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -276,7 +276,7 @@ public final class Parcel {

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

    public final void appendFrom(Parcel parcel, int offset, int length) {