From 6606a4ff010fcade2bd73c0dfad902075fd7f25c Mon Sep 17 00:00:00 2001 From: olly Date: Wed, 10 Jul 2019 20:21:42 +0100 Subject: [PATCH] CronetDataSource: Fix invalid Javadoc tag PiperOrigin-RevId: 257456890 --- .../google/android/exoplayer2/ext/cronet/CronetDataSource.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/cronet/src/main/java/com/google/android/exoplayer2/ext/cronet/CronetDataSource.java b/extensions/cronet/src/main/java/com/google/android/exoplayer2/ext/cronet/CronetDataSource.java index b1f907cc37..ed92523017 100644 --- a/extensions/cronet/src/main/java/com/google/android/exoplayer2/ext/cronet/CronetDataSource.java +++ b/extensions/cronet/src/main/java/com/google/android/exoplayer2/ext/cronet/CronetDataSource.java @@ -554,7 +554,7 @@ public class CronetDataSource extends BaseDataSource implements HttpDataSource { * @return The number of bytes read, or {@link C#RESULT_END_OF_INPUT} if no data is available * because the end of the opened range has been reached. * @throws HttpDataSourceException If an error occurs reading from the source. - * @throws IllegalArgumentException If {@codes buffer} is not a direct ByteBuffer. + * @throws IllegalArgumentException If {@code buffer} is not a direct ByteBuffer. */ public int read(ByteBuffer buffer) throws HttpDataSourceException { Assertions.checkState(opened);