Commit 3f1b1b70 by samrobinson Committed by Ian Baker

Remove checkNotNull from Transformer build method.

PiperOrigin-RevId: 487811903
parent 681de4e7
...@@ -402,16 +402,12 @@ public final class Transformer { ...@@ -402,16 +402,12 @@ public final class Transformer {
/** /**
* Builds a {@link Transformer} instance. * Builds a {@link Transformer} instance.
* *
* @throws NullPointerException If the {@link Context} has not been provided.
* @throws IllegalStateException If both audio and video have been removed (otherwise the output * @throws IllegalStateException If both audio and video have been removed (otherwise the output
* would not contain any samples). * would not contain any samples).
* @throws IllegalStateException If the muxer doesn't support the requested audio MIME type. * @throws IllegalStateException If the muxer doesn't support the requested audio MIME type.
* @throws IllegalStateException If the muxer doesn't support the requested video MIME type. * @throws IllegalStateException If the muxer doesn't support the requested video MIME type.
*/ */
public Transformer build() { public Transformer build() {
// TODO(huangdarwin): Remove this checkNotNull after deprecated {@link #setContext(Context)}
// is removed.
checkNotNull(context);
if (transformationRequest.audioMimeType != null) { if (transformationRequest.audioMimeType != null) {
checkSampleMimeType(transformationRequest.audioMimeType); checkSampleMimeType(transformationRequest.audioMimeType);
} }
......
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