X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fafb-context.c;h=8a1938a1b44c288650c3fc1b720a0f80a1f0c1e2;hb=e08d57c0e397018f0c463a66adc232f6358caef5;hp=4cdaa6f7f8dfb41aa24f72d4178a2b8d0594c7af;hpb=7c67e966b8292961ca748e47d18ff437214cec1c;p=src%2Fapp-framework-binder.git diff --git a/src/afb-context.c b/src/afb-context.c index 4cdaa6f7..8a1938a1 100644 --- a/src/afb-context.c +++ b/src/afb-context.c @@ -107,15 +107,6 @@ const char *afb_context_uuid(struct afb_context *context) return context->session ? afb_session_uuid(context->session) : ""; } -const char *afb_context_sent_uuid(struct afb_context *context) -{ - if (context->session == NULL || context->closing || context->super) - return NULL; - if (!context->created) - return NULL; - return afb_session_uuid(context->session); -} - void *afb_context_make(struct afb_context *context, int replace, void *(*make_value)(void *closure), void (*free_value)(void *item), void *closure) { assert(context->session != NULL);