From 8b520c8f8e176f07ed496a171ddae75e66b3bc4f Mon Sep 17 00:00:00 2001 From: Jean-Michel Trivi Date: Thu, 8 May 2014 09:57:00 -0700 Subject: [PATCH] Fix javadoc reference in AudioTrack write modes Javadoc for blocking/non blocking write modes was referring to the old signature of one of the write methods. Change-Id: Ie919e3e0a976b0c915dacd490ae66005703789a3 --- media/java/android/media/AudioTrack.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/media/java/android/media/AudioTrack.java b/media/java/android/media/AudioTrack.java index 4fe4eb80217b4..007eb4000c090 100644 --- a/media/java/android/media/AudioTrack.java +++ b/media/java/android/media/AudioTrack.java @@ -173,13 +173,13 @@ public class AudioTrack /** * The write mode indicating the write operation will block until all data has been written, - * to be used in {@link #write(ByteBuffer, int, int, int)}. + * to be used in {@link #write(ByteBuffer, int, int)} */ public final static int WRITE_BLOCKING = 0; /** * The write mode indicating the write operation will return immediately after * queuing as much audio data for playback as possible without blocking, to be used in - * {@link #write(ByteBuffer, int, int, int)}. + * {@link #write(ByteBuffer, int, int)}. */ public final static int WRITE_NON_BLOCKING = 1;