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

Commit e278ff43 authored by Mateus Azis's avatar Mateus Azis Committed by Automerger Merge Worker
Browse files

Merge "Mark Message.peekData as returning a nullable value." into main am:...

Merge "Mark Message.peekData as returning a nullable value." into main am: 9727fd34 am: ef6101d5

Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/2781849



Change-Id: I530a534f1d8f95c155ebb04a1bcaf19dcf1c4aee
Signed-off-by: default avatarAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
parents 0ae895a6 ef6101d5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -33236,7 +33236,7 @@ package android.os {
    method public static android.os.Message obtain(android.os.Handler, int, Object);
    method public static android.os.Message obtain(android.os.Handler, int, int, int);
    method public static android.os.Message obtain(android.os.Handler, int, int, int, Object);
    method public android.os.Bundle peekData();
    method @Nullable public android.os.Bundle peekData();
    method public void recycle();
    method public void sendToTarget();
    method public void setAsynchronous(boolean);
+2 −0
Original line number Diff line number Diff line
@@ -16,6 +16,7 @@

package android.os;

import android.annotation.Nullable;
import android.compat.annotation.UnsupportedAppUsage;
import android.util.TimeUtils;
import android.util.proto.ProtoOutputStream;
@@ -436,6 +437,7 @@ public final class Message implements Parcelable {
     * @see #getData()
     * @see #setData(Bundle)
     */
    @Nullable
    public Bundle peekData() {
        return data;
    }