[NLP] hot fix to avoid dummy build error
authorWonYoung Choi <wy80.choi@samsung.com>
Tue, 4 Sep 2018 10:00:41 +0000 (19:00 +0900)
committerGitHub <noreply@github.com>
Tue, 4 Sep 2018 10:00:41 +0000 (19:00 +0900)
src/Tizen.Nlp/Tizen.Nlp/NlpProxy.cs

index 0cfb0c3..95937fb 100644 (file)
@@ -168,7 +168,10 @@ namespace Tizen.Nlp
             } while (true);
         }
 
-        public Message(string appId) => _appId = appId;
+        public Message(string appId)
+        {
+            _appId = appId;
+        }
 
         public void Connect()
         {
@@ -268,4 +271,4 @@ namespace Tizen.Nlp
             }
         }
     }
-}
\ No newline at end of file
+}