From d71bd8533b995dc06b9f79355ad48c0c95509130 Mon Sep 17 00:00:00 2001 From: Santiago Seifert Date: Thu, 20 Jan 2022 17:12:43 +0000 Subject: [PATCH] Replace 33 with a ref to Build symbol in javadoc Bug: 203553331 Change-Id: I561d3d0574e675f650f3feded21f5472faaccf30 Test: Presubmit. --- media/java/android/media/MediaMetadataRetriever.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/media/java/android/media/MediaMetadataRetriever.java b/media/java/android/media/MediaMetadataRetriever.java index ad8fc0707f3e9..ea261852bb9f6 100644 --- a/media/java/android/media/MediaMetadataRetriever.java +++ b/media/java/android/media/MediaMetadataRetriever.java @@ -1078,8 +1078,8 @@ public class MediaMetadataRetriever implements AutoCloseable { * * @throws IOException When an {@link IOException} is thrown while closing a {@link * MediaDataSource} passed to {@link #setDataSource(MediaDataSource)}. This throws clause exists - * since API 33, but this method can throw in earlier API versions where the exception is not - * declared. + * since API {@link android.os.Build.VERSION_CODES#TIRAMISU}, but this method can throw in + * earlier API versions where the exception is not declared. */ @Override public void close() throws IOException { @@ -1091,8 +1091,8 @@ public class MediaMetadataRetriever implements AutoCloseable { * * @throws IOException When an {@link IOException} is thrown while closing a {@link * MediaDataSource} passed to {@link #setDataSource(MediaDataSource)}. This throws clause exists - * since API 33, but this method can throw in earlier API versions where the exception is not - * declared. + * since API {@link android.os.Build.VERSION_CODES#TIRAMISU}, but this method can throw in + * earlier API versions where the exception is not declared. */ public native void release() throws IOException; @UnsupportedAppUsage(maxTargetSdk = Build.VERSION_CODES.P, trackingBug = 115609023)