From 4f145a83cf2ff874105c9c886c1e3931fecfb6a0 Mon Sep 17 00:00:00 2001 From: tonihei Date: Mon, 19 Apr 2021 13:17:01 +0100 Subject: [PATCH] Make ProgramInformation final. This was likely an oversight when first importing #4930. PiperOrigin-RevId: 369199775 --- .../exoplayer2/source/dash/manifest/ProgramInformation.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/dash/src/main/java/com/google/android/exoplayer2/source/dash/manifest/ProgramInformation.java b/library/dash/src/main/java/com/google/android/exoplayer2/source/dash/manifest/ProgramInformation.java index ebfafec999..5c434adb4a 100644 --- a/library/dash/src/main/java/com/google/android/exoplayer2/source/dash/manifest/ProgramInformation.java +++ b/library/dash/src/main/java/com/google/android/exoplayer2/source/dash/manifest/ProgramInformation.java @@ -19,7 +19,7 @@ import androidx.annotation.Nullable; import com.google.android.exoplayer2.util.Util; /** A parsed program information element. */ -public class ProgramInformation { +public final class ProgramInformation { /** The title for the media presentation. */ @Nullable public final String title;