Commit 4343dc60 by aquilescanta Committed by Oliver Woodman

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
parent 5ce2f176
...@@ -201,20 +201,20 @@ public final class MediaItem { ...@@ -201,20 +201,20 @@ public final class MediaItem {
public final UUID uuid; 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. * server must be provided by the media.
*/ */
@Nullable public final UriBundle licenseServerUri; @Nullable public final UriBundle licenseServer;
/** /**
* Creates an instance. * Creates an instance.
* *
* @param uuid See {@link #uuid}. * @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.uuid = uuid;
this.licenseServerUri = licenseServerUri; this.licenseServer = licenseServer;
} }
} }
......
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