From b74ee00c0ff7c1c4cfe8794e01257a84f870f3b0 Mon Sep 17 00:00:00 2001 From: bachinger Date: Tue, 19 Oct 2021 23:47:14 +0100 Subject: [PATCH] Minor JavaDoc improvement in ExoPlayerLibraryInfo PiperOrigin-RevId: 404384670 --- .../com/google/android/exoplayer2/ExoPlayerLibraryInfo.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/library/common/src/main/java/com/google/android/exoplayer2/ExoPlayerLibraryInfo.java b/library/common/src/main/java/com/google/android/exoplayer2/ExoPlayerLibraryInfo.java index 5687d76392..9f13465861 100644 --- a/library/common/src/main/java/com/google/android/exoplayer2/ExoPlayerLibraryInfo.java +++ b/library/common/src/main/java/com/google/android/exoplayer2/ExoPlayerLibraryInfo.java @@ -19,17 +19,17 @@ import com.google.android.exoplayer2.util.Assertions; import com.google.android.exoplayer2.util.TraceUtil; import java.util.HashSet; -/** Information about the library. */ +/** Information about the media libraries. */ public final class ExoPlayerLibraryInfo { /** A tag to use when logging library information. */ - public static final String TAG = "ExoPlayer"; + public static final String TAG = "ExoPlayerLib"; /** The version of the library expressed as a string, for example "1.2.3". */ // Intentionally hardcoded. Do not derive from other constants (e.g. VERSION_INT) or vice versa. public static final String VERSION = "2.15.1"; - /** The version of the library expressed as {@code "ExoPlayerLib/" + VERSION}. */ + /** The version of the library expressed as {@code TAG + "/" + VERSION}. */ // Intentionally hardcoded. Do not derive from other constants (e.g. VERSION) or vice versa. public static final String VERSION_SLASHY = "ExoPlayerLib/2.15.1";