From d961165064966f621c65fa441ccc861db8f0486f Mon Sep 17 00:00:00 2001 From: Mike Burke Date: Tue, 27 Jan 2015 14:39:56 -0500 Subject: [PATCH] Fixes #80. Changed return type of getMaxDuration from int to Integer Signed-off-by: Mike Burke --- .../src/com/smartdevicelink/proxy/rpc/PerformAudioPassThru.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdl_android_lib/src/com/smartdevicelink/proxy/rpc/PerformAudioPassThru.java b/sdl_android_lib/src/com/smartdevicelink/proxy/rpc/PerformAudioPassThru.java index 3818f63122..b6c6f4fe99 100644 --- a/sdl_android_lib/src/com/smartdevicelink/proxy/rpc/PerformAudioPassThru.java +++ b/sdl_android_lib/src/com/smartdevicelink/proxy/rpc/PerformAudioPassThru.java @@ -218,7 +218,7 @@ public void setMaxDuration(Integer maxDuration) { * @return int -an int value representing the maximum duration of audio * recording in milliseconds */ - public int getMaxDuration() { + public Integer getMaxDuration() { return (Integer) parameters.get(KEY_MAX_DURATION); }