From: Hyunjin Park Date: Fri, 8 Jul 2016 02:49:59 +0000 (+0900) Subject: [application] remove useless code to check presence when send replycallback X-Git-Tag: submit/tizen/20160708.104007~1^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F46%2F79046%2F2;p=platform%2Fcore%2Fapi%2Fwebapi-plugins.git [application] remove useless code to check presence when send replycallback Change-Id: I491579a5786c7e657de93cca6c23bce7801a83f7 --- diff --git a/src/application/requested_application_control.cc b/src/application/requested_application_control.cc index 79bbf433..04adbc44 100755 --- a/src/application/requested_application_control.cc +++ b/src/application/requested_application_control.cc @@ -107,14 +107,6 @@ void RequestedApplicationControl::ReplyResult(const picojson::value& args, picoj return; } - // code to check caller liveness - result = VerifyCallerPresence(); - if (result.IsError()) { - LogAndReportError(result, out, - ("Failed VerifyCallerPresence()")); - return; - } - // create reply app_control_h reply; app_control_create(&reply); @@ -159,13 +151,6 @@ void RequestedApplicationControl::ReplyFailure(picojson::object* out) { return; } - // code to check caller liveness - result = VerifyCallerPresence(); - if (result.IsError()) { - LogAndReportError(result, out, ("Failed VerifyCallerPresence()")); - return; - } - // create reply app_control_h reply; app_control_create(&reply);