mirror of
https://github.com/samsonjs/media.git
synced 2026-04-09 11:55:46 +00:00
Remove the Uri suffix from MediaItem.DrmScheme.licenseServerUri
Makes it consistent with MediaItem.media. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=218217648
This commit is contained in:
parent
5ce2f1763d
commit
4343dc6084
1 changed files with 5 additions and 5 deletions
|
|
@ -201,20 +201,20 @@ public final class MediaItem {
|
|||
public final UUID uuid;
|
||||
|
||||
/**
|
||||
* A optional {@link UriBundle} for the license server. If no license server is provided, the
|
||||
* Optional {@link UriBundle} for the license server. If no license server is provided, the
|
||||
* server must be provided by the media.
|
||||
*/
|
||||
@Nullable public final UriBundle licenseServerUri;
|
||||
@Nullable public final UriBundle licenseServer;
|
||||
|
||||
/**
|
||||
* Creates an instance.
|
||||
*
|
||||
* @param uuid See {@link #uuid}.
|
||||
* @param licenseServerUri See {@link #licenseServerUri}.
|
||||
* @param licenseServer See {@link #licenseServer}.
|
||||
*/
|
||||
public DrmScheme(UUID uuid, @Nullable UriBundle licenseServerUri) {
|
||||
public DrmScheme(UUID uuid, @Nullable UriBundle licenseServer) {
|
||||
this.uuid = uuid;
|
||||
this.licenseServerUri = licenseServerUri;
|
||||
this.licenseServer = licenseServer;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue