Updated formatting

This commit is contained in:
Nicola Verbeeck 2018-07-19 11:04:28 +02:00
parent fbef465ca8
commit e6d32d3fb5

View File

@ -162,9 +162,9 @@ public final class DashMediaSource extends BaseMediaSource {
* @throws IllegalStateException If one of the {@code create} methods has already been called. * @throws IllegalStateException If one of the {@code create} methods has already been called.
*/ */
public Factory setDefaultLivePresentationDelayMs(long defaultLivePresentationDelayMs) { public Factory setDefaultLivePresentationDelayMs(long defaultLivePresentationDelayMs) {
Assertions.checkState(!isCreateCalled); Assertions.checkState(!isCreateCalled);
this.defaultLivePresentationDelayMs = defaultLivePresentationDelayMs; this.defaultLivePresentationDelayMs = defaultLivePresentationDelayMs;
return this return this;
} }
/** /**