Skip to content
Snippets Groups Projects
Commit 9727fd34 authored by Mateus Azis's avatar Mateus Azis Committed by Gerrit Code Review
Browse files

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

parents c9056845 e8edb9d1
No related branches found
No related tags found
No related merge requests found
......@@ -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);
......@@ -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;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment