mirror of
https://github.com/androidx/media.git
synced 2025-05-12 01:59:50 +08:00
Do not check the validity of dates in MediaMetadata.
PiperOrigin-RevId: 380009757
This commit is contained in:
parent
259f0f67a3
commit
9c12d08531
@ -15,8 +15,6 @@
|
|||||||
*/
|
*/
|
||||||
package com.google.android.exoplayer2;
|
package com.google.android.exoplayer2;
|
||||||
|
|
||||||
import static com.google.android.exoplayer2.util.Assertions.checkArgument;
|
|
||||||
|
|
||||||
import android.net.Uri;
|
import android.net.Uri;
|
||||||
import android.os.Bundle;
|
import android.os.Bundle;
|
||||||
import androidx.annotation.IntDef;
|
import androidx.annotation.IntDef;
|
||||||
@ -219,13 +217,10 @@ public final class MediaMetadata implements Bundleable {
|
|||||||
/**
|
/**
|
||||||
* Sets the month of the recording date.
|
* Sets the month of the recording date.
|
||||||
*
|
*
|
||||||
* <p>Value must be between 1 and 12.
|
* <p>Value should be between 1 and 12.
|
||||||
*/
|
*/
|
||||||
public Builder setRecordingMonth(
|
public Builder setRecordingMonth(
|
||||||
@Nullable @IntRange(from = 1, to = 12) Integer recordingMonth) {
|
@Nullable @IntRange(from = 1, to = 12) Integer recordingMonth) {
|
||||||
if (recordingMonth != null) {
|
|
||||||
checkArgument(recordingMonth >= 1 && recordingMonth <= 12);
|
|
||||||
}
|
|
||||||
this.recordingMonth = recordingMonth;
|
this.recordingMonth = recordingMonth;
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
@ -233,12 +228,9 @@ public final class MediaMetadata implements Bundleable {
|
|||||||
/**
|
/**
|
||||||
* Sets the day of the recording date.
|
* Sets the day of the recording date.
|
||||||
*
|
*
|
||||||
* <p>Value must be between 1 and 31.
|
* <p>Value should be between 1 and 31.
|
||||||
*/
|
*/
|
||||||
public Builder setRecordingDay(@Nullable @IntRange(from = 1, to = 31) Integer recordingDay) {
|
public Builder setRecordingDay(@Nullable @IntRange(from = 1, to = 31) Integer recordingDay) {
|
||||||
if (recordingDay != null) {
|
|
||||||
checkArgument(recordingDay >= 1 && recordingDay <= 31);
|
|
||||||
}
|
|
||||||
this.recordingDay = recordingDay;
|
this.recordingDay = recordingDay;
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
@ -252,12 +244,9 @@ public final class MediaMetadata implements Bundleable {
|
|||||||
/**
|
/**
|
||||||
* Sets the month of the release date.
|
* Sets the month of the release date.
|
||||||
*
|
*
|
||||||
* <p>Value must be between 1 and 12.
|
* <p>Value should be between 1 and 12.
|
||||||
*/
|
*/
|
||||||
public Builder setReleaseMonth(@Nullable @IntRange(from = 1, to = 12) Integer releaseMonth) {
|
public Builder setReleaseMonth(@Nullable @IntRange(from = 1, to = 12) Integer releaseMonth) {
|
||||||
if (releaseMonth != null) {
|
|
||||||
checkArgument(releaseMonth >= 1 && releaseMonth <= 12);
|
|
||||||
}
|
|
||||||
this.releaseMonth = releaseMonth;
|
this.releaseMonth = releaseMonth;
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
@ -265,12 +254,9 @@ public final class MediaMetadata implements Bundleable {
|
|||||||
/**
|
/**
|
||||||
* Sets the day of the release date.
|
* Sets the day of the release date.
|
||||||
*
|
*
|
||||||
* <p>Value must be between 1 and 31.
|
* <p>Value should be between 1 and 31.
|
||||||
*/
|
*/
|
||||||
public Builder setReleaseDay(@Nullable @IntRange(from = 1, to = 31) Integer releaseDay) {
|
public Builder setReleaseDay(@Nullable @IntRange(from = 1, to = 31) Integer releaseDay) {
|
||||||
if (releaseDay != null) {
|
|
||||||
checkArgument(releaseDay >= 1 && releaseDay <= 31);
|
|
||||||
}
|
|
||||||
this.releaseDay = releaseDay;
|
this.releaseDay = releaseDay;
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user