mirror of
https://github.com/samsonjs/media.git
synced 2026-04-01 10:35:48 +00:00
Add javadoc for Bundleable CREATOR fields
It's to comply with style guide as they are public. PiperOrigin-RevId: 360914363
This commit is contained in:
parent
7a02346d49
commit
4df7410272
2 changed files with 2 additions and 0 deletions
|
|
@ -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 =
|
||||
|
|
|
|||
Loading…
Reference in a new issue