mirror of
https://github.com/samsonjs/media.git
synced 2026-03-27 09:45:47 +00:00
Remove nullness suppression that's no longer required
PiperOrigin-RevId: 284965120
This commit is contained in:
parent
a97b09d799
commit
a00e7dfed2
1 changed files with 1 additions and 3 deletions
|
|
@ -122,7 +122,7 @@ import org.checkerframework.checker.nullness.qual.RequiresNonNull;
|
|||
@Nullable private T mediaCrypto;
|
||||
@Nullable private DrmSessionException lastException;
|
||||
@Nullable private byte[] sessionId;
|
||||
@MonotonicNonNull private byte[] offlineLicenseKeySetId;
|
||||
private byte @MonotonicNonNull [] offlineLicenseKeySetId;
|
||||
|
||||
@Nullable private KeyRequest currentKeyRequest;
|
||||
@Nullable private ProvisionRequest currentProvisionRequest;
|
||||
|
|
@ -147,8 +147,6 @@ import org.checkerframework.checker.nullness.qual.RequiresNonNull;
|
|||
* @param loadErrorHandlingPolicy The {@link LoadErrorHandlingPolicy} for key and provisioning
|
||||
* requests.
|
||||
*/
|
||||
// the constructor does not initialize fields: sessionId
|
||||
@SuppressWarnings("nullness:initialization.fields.uninitialized")
|
||||
public DefaultDrmSession(
|
||||
UUID uuid,
|
||||
ExoMediaDrm<T> mediaDrm,
|
||||
|
|
|
|||
Loading…
Reference in a new issue