Commit 4df74102 by gyumin Committed by Ian Baker

Add javadoc for Bundleable CREATOR fields

It's to comply with style guide as they are public.

PiperOrigin-RevId: 360914363
parent 7a02346d
......@@ -187,6 +187,7 @@ public final class AudioAttributes implements Bundleable {
return bundle;
}
/** Object that can restore {@link AudioAttributes} from a {@link Bundle}. */
public static final Creator<AudioAttributes> CREATOR =
bundle -> {
Builder builder = new Builder();
......
......@@ -103,6 +103,7 @@ public final class DeviceInfo implements Bundleable {
return bundle;
}
/** Object that can restore {@link DeviceInfo} from a {@link Bundle}. */
public static final Creator<DeviceInfo> CREATOR =
bundle -> {
int playbackType =
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment