Merge "Add javadoc for (Persistable)Bundle.EMPTY" into sc-dev am: e1127fccde am: 426ac275fb

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

MUST ONLY BE SUBMITTED BY AUTOMERGER

Change-Id: Ie2a73212b1614826fa06d9191fe9a7c9d21d30fb
This commit is contained in:
TreeHugger Robot
2021-01-28 16:00:42 +00:00
committed by Automerger Merge Worker
2 changed files with 3 additions and 0 deletions

View File

@@ -45,6 +45,7 @@ public final class Bundle extends BaseBundle implements Cloneable, Parcelable {
@VisibleForTesting
static final int FLAG_ALLOW_FDS = 1 << 10;
/** An unmodifiable {@code Bundle} that is always {@link #isEmpty() empty}. */
public static final Bundle EMPTY;
/**

View File

@@ -47,6 +47,8 @@ import java.util.ArrayList;
public final class PersistableBundle extends BaseBundle implements Cloneable, Parcelable,
XmlUtils.WriteMapCallback {
private static final String TAG_PERSISTABLEMAP = "pbundle_as_map";
/** An unmodifiable {@code PersistableBundle} that is always {@link #isEmpty() empty}. */
public static final PersistableBundle EMPTY;
static {