summaryrefslogtreecommitdiff
path: root/SDL_Android/SmartDeviceLinkProxyAndroid/src/com/smartdevicelink/proxy/rpc/EndAudioPassThru.java
diff options
context:
space:
mode:
Diffstat (limited to 'SDL_Android/SmartDeviceLinkProxyAndroid/src/com/smartdevicelink/proxy/rpc/EndAudioPassThru.java')
-rwxr-xr-xSDL_Android/SmartDeviceLinkProxyAndroid/src/com/smartdevicelink/proxy/rpc/EndAudioPassThru.java37
1 files changed, 0 insertions, 37 deletions
diff --git a/SDL_Android/SmartDeviceLinkProxyAndroid/src/com/smartdevicelink/proxy/rpc/EndAudioPassThru.java b/SDL_Android/SmartDeviceLinkProxyAndroid/src/com/smartdevicelink/proxy/rpc/EndAudioPassThru.java
deleted file mode 100755
index a317c477b..000000000
--- a/SDL_Android/SmartDeviceLinkProxyAndroid/src/com/smartdevicelink/proxy/rpc/EndAudioPassThru.java
+++ /dev/null
@@ -1,37 +0,0 @@
-package com.smartdevicelink.proxy.rpc;
-
-import java.util.Hashtable;
-
-import com.smartdevicelink.proxy.RPCRequest;
-
-/**
- * When this request is invoked, the audio capture stops
- * <p>
- * Function Group: AudioPassThru
- * <p>
- * <b>HMILevel needs to be FULL, LIMITED or BACKGROUND</b>
- * </p>
- * @since SmartDeviceLink 2.0
- * @see PerformAudioPassThru
- */
-public class EndAudioPassThru extends RPCRequest {
-
- /**
- * Constructs a new EndAudioPassThru object
- */
- public EndAudioPassThru() {
- super("EndAudioPassThru");
- }
-
- /**
- * Constructs a new EndAudioPassThru object indicated by the Hashtable
- * parameter
- * <p>
- *
- * @param hash
- * The Hashtable to use
- */
- public EndAudioPassThru(Hashtable hash) {
- super(hash);
- }
-}