From d54df32f25c55aaf37ee5cb5cf44c9f8d2d76625 Mon Sep 17 00:00:00 2001 From: tonihei Date: Fri, 30 Jun 2017 03:37:34 -0700 Subject: [PATCH] Correct JavaDoc in TimelineAsserts. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=160631095 --- .../google/android/exoplayer2/testutil/TimelineAsserts.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/testutils/src/main/java/com/google/android/exoplayer2/testutil/TimelineAsserts.java b/testutils/src/main/java/com/google/android/exoplayer2/testutil/TimelineAsserts.java index 7e7cf58cf3..6e50251c27 100644 --- a/testutils/src/main/java/com/google/android/exoplayer2/testutil/TimelineAsserts.java +++ b/testutils/src/main/java/com/google/android/exoplayer2/testutil/TimelineAsserts.java @@ -201,9 +201,9 @@ public final class TimelineAsserts { } /** - * Asserts that period counts for each window are set correctly. Also asserts the correct setting - * of {@link Window}.firstPeriodIndex, {@link Window}.lastPeriodIndex, and the behavior of - * {@link Timeline}.getNextPeriodIndex. + * Asserts that period counts for each window are set correctly. Also asserts that + * {@link Window#firstPeriodIndex} and {@link Window#lastPeriodIndex} are set correctly, and it + * asserts the correct behavior of {@link Timeline#getNextWindowIndex(int, int)}. */ public static void assertPeriodCounts(Timeline timeline, int... expectedPeriodCounts) { int windowCount = timeline.getWindowCount();