Fix missing equals sign in inline-comment parameter names
PiperOrigin-RevId: 542577676
This commit is contained in:
parent
12584fbb20
commit
ea0f564c1e
@ -239,7 +239,7 @@ import org.checkerframework.checker.nullness.qual.MonotonicNonNull;
|
||||
.query(
|
||||
tableName,
|
||||
COLUMNS,
|
||||
/* selection */ null,
|
||||
/* selection= */ null,
|
||||
/* selectionArgs= */ null,
|
||||
/* groupBy= */ null,
|
||||
/* having= */ null,
|
||||
|
@ -358,7 +358,7 @@ public final class CronetDataSourceFactory extends BaseFactory {
|
||||
/* userAgent= */ null,
|
||||
defaultRequestProperties,
|
||||
/* contentTypePredicate= */ null,
|
||||
/* keepPostFor302Redirects */ false);
|
||||
/* keepPostFor302Redirects= */ false);
|
||||
if (transferListener != null) {
|
||||
dataSource.addTransferListener(transferListener);
|
||||
}
|
||||
|
@ -338,7 +338,7 @@ public final class PlaybackStats {
|
||||
return new PlaybackStats(
|
||||
playbackCount,
|
||||
playbackStateDurationsMs,
|
||||
/* playbackStateHistory */ Collections.emptyList(),
|
||||
/* playbackStateHistory= */ Collections.emptyList(),
|
||||
/* mediaTimeHistory= */ Collections.emptyList(),
|
||||
firstReportedTimeMs,
|
||||
foregroundPlaybackCount,
|
||||
|
@ -445,7 +445,7 @@ public final class ConcatenatingMediaSourceTest {
|
||||
testThread.runOnMainThread(
|
||||
() ->
|
||||
mediaSource.addMediaSource(
|
||||
/* index */ 0,
|
||||
/* index= */ 0,
|
||||
createFakeMediaSource(),
|
||||
Util.createHandlerForCurrentLooper(),
|
||||
runnableInvoked::countDown));
|
||||
@ -463,7 +463,7 @@ public final class ConcatenatingMediaSourceTest {
|
||||
testThread.runOnMainThread(
|
||||
() ->
|
||||
mediaSource.addMediaSources(
|
||||
/* index */ 0,
|
||||
/* index= */ 0,
|
||||
Arrays.asList(new MediaSource[] {createFakeMediaSource(), createFakeMediaSource()}),
|
||||
Util.createHandlerForCurrentLooper(),
|
||||
runnableInvoked::countDown));
|
||||
@ -482,7 +482,7 @@ public final class ConcatenatingMediaSourceTest {
|
||||
() -> {
|
||||
mediaSource.addMediaSource(createFakeMediaSource());
|
||||
mediaSource.removeMediaSource(
|
||||
/* index */ 0, Util.createHandlerForCurrentLooper(), runnableInvoked::countDown);
|
||||
/* index= */ 0, Util.createHandlerForCurrentLooper(), runnableInvoked::countDown);
|
||||
});
|
||||
runnableInvoked.await(MediaSourceTestRunner.TIMEOUT_MS, MILLISECONDS);
|
||||
testThread.release();
|
||||
@ -557,7 +557,7 @@ public final class ConcatenatingMediaSourceTest {
|
||||
testThread.runOnMainThread(
|
||||
() ->
|
||||
mediaSource.addMediaSource(
|
||||
/* index */ 0,
|
||||
/* index= */ 0,
|
||||
createFakeMediaSource(),
|
||||
Util.createHandlerForCurrentLooper(),
|
||||
timelineGrabber));
|
||||
@ -577,7 +577,7 @@ public final class ConcatenatingMediaSourceTest {
|
||||
testThread.runOnMainThread(
|
||||
() ->
|
||||
mediaSource.addMediaSources(
|
||||
/* index */ 0,
|
||||
/* index= */ 0,
|
||||
Arrays.asList(
|
||||
new MediaSource[] {createFakeMediaSource(), createFakeMediaSource()}),
|
||||
Util.createHandlerForCurrentLooper(),
|
||||
@ -601,7 +601,7 @@ public final class ConcatenatingMediaSourceTest {
|
||||
testThread.runOnMainThread(
|
||||
() ->
|
||||
mediaSource.removeMediaSource(
|
||||
/* index */ 0, Util.createHandlerForCurrentLooper(), timelineGrabber));
|
||||
/* index= */ 0, Util.createHandlerForCurrentLooper(), timelineGrabber));
|
||||
Timeline timeline = timelineGrabber.assertTimelineChangeBlocking();
|
||||
assertThat(timeline.getWindowCount()).isEqualTo(0);
|
||||
} finally {
|
||||
@ -1114,7 +1114,7 @@ public final class ConcatenatingMediaSourceTest {
|
||||
}
|
||||
|
||||
private static FakeMediaSource createFakeMediaSource() {
|
||||
return new FakeMediaSource(createFakeTimeline(/* index */ 0));
|
||||
return new FakeMediaSource(createFakeTimeline(/* index= */ 0));
|
||||
}
|
||||
|
||||
private static FakeTimeline createFakeTimeline(int index) {
|
||||
|
@ -316,7 +316,7 @@ public final class DashUtil {
|
||||
dataSpec,
|
||||
representation.format,
|
||||
C.SELECTION_REASON_UNKNOWN,
|
||||
null /* trackSelectionData */,
|
||||
/* trackSelectionData= */ null,
|
||||
chunkExtractor);
|
||||
initializationChunk.load();
|
||||
}
|
||||
|
@ -326,7 +326,7 @@ public final class FakeTimeline extends Timeline {
|
||||
AdPlaybackState contentPeriodState = new AdPlaybackState(/* adsId= */ "adsId");
|
||||
AdPlaybackState firstAdPeriodState =
|
||||
contentPeriodState
|
||||
.withNewAdGroup(/* adGroupIndex= */ 0, /* adGroupTimesUs */ 0)
|
||||
.withNewAdGroup(/* adGroupIndex= */ 0, /* adGroupTimeUs= */ 0)
|
||||
.withAdCount(/* adGroupIndex= */ 0, 1)
|
||||
.withAdDurationsUs(
|
||||
/* adGroupIndex= */ 0, DEFAULT_WINDOW_OFFSET_IN_FIRST_PERIOD_US + periodDurationUs)
|
||||
|
Loading…
x
Reference in New Issue
Block a user