Remove async keyword from SendAndReceiveAsync() method (#2801)
authorhjhun <36876573+hjhun@users.noreply.github.com>
Wed, 31 Mar 2021 07:52:37 +0000 (16:52 +0900)
committerGitHub <noreply@github.com>
Wed, 31 Mar 2021 07:52:37 +0000 (16:52 +0900)
Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
src/Tizen.Applications.ComponentBased.Port/Tizen.Applications.ComponentBased.Port/ComponentPort.cs

index d03b59b..e62d82f 100755 (executable)
@@ -269,7 +269,7 @@ namespace Tizen.Applications.ComponentBased
         /// <param name="request">The serializable data to send</param>
         /// <returns>The received serializable data</returns>
         /// /// <since_tizen> 9 </since_tizen>
-        public async Task<object> SendAndReceiveAsync(string endpoint, int timeout, object request)
+        public Task<object> SendAndReceiveAsync(string endpoint, int timeout, object request)
         {
             try
             {