Remove UnUsed variable "dataType" from Aitt Module
authorVanamala Narasimha Bhargav <v.bhargav@samsung.com>
Fri, 26 Aug 2022 06:15:09 +0000 (11:45 +0530)
committerYoungjae Shin <yj99.shin@samsung.com>
Thu, 15 Sep 2022 05:34:55 +0000 (14:34 +0900)
android/aitt/src/main/java/com/samsung/android/aitt/WebRTCHandler.java
android/modules/webrtc/src/main/java/com/samsung/android/modules/webrtc/WebRTC.java

index fc8e668..e4d1cf3 100644 (file)
@@ -48,7 +48,6 @@ class WebRTCHandler implements TransportHandler {
         WebRTC.ReceiveDataCallback cb = data -> {
             handlerDataCallback.pushHandlerData(data);
         };
-        WebRTC.DataType dataType = topic.endsWith(Definitions.RESPONSE_POSTFIX) ? WebRTC.DataType.MESSAGE : WebRTC.DataType.VIDEOFRAME;
         ws = new WebRTCServer(appContext, cb);
         int serverPort = ws.start();
         if (serverPort < 0) {
@@ -91,14 +90,13 @@ class WebRTCHandler implements TransportHandler {
 
     @Override
     public void publish(String topic, String ip, int port, byte[] message) {
-        WebRTC.DataType dataType = topic.endsWith(Definitions.RESPONSE_POSTFIX) ? WebRTC.DataType.MESSAGE : WebRTC.DataType.VIDEOFRAME;
         if (webrtc == null) {
             webrtc = new WebRTC(appContext);
             webrtc.connect(ip, port);
         }
-        if (dataType == WebRTC.DataType.MESSAGE) {
+        if (topic.endsWith(Definitions.RESPONSE_POSTFIX)) {
             webrtc.sendMessageData(message);
-        } else if (dataType == WebRTC.DataType.VIDEOFRAME) {
+        } else {
             webrtc.sendVideoData(message, frameWidth, frameHeight);
         }
     }
index 07d61fa..ec7e7a0 100644 (file)
@@ -82,14 +82,6 @@ public class WebRTC {
     private Integer recieverPort;
 
     /**
-     * WebRTC channels supported - Media channel, data channel
-     */
-    public enum DataType{
-        MESSAGE,
-        VIDEOFRAME,
-    }
-
-    /**
      * WebRTC constructor to create webRTC instance
      * @param appContext Application context creating webRTC instance
      */