Remove unused bt_notification_get_stream()
authorPhilippe Proulx <eeppeliteloop@gmail.com>
Mon, 19 Jun 2017 22:39:13 +0000 (18:39 -0400)
committerJérémie Galarneau <jeremie.galarneau@efficios.com>
Thu, 6 Jul 2017 20:04:21 +0000 (16:04 -0400)
Signed-off-by: Philippe Proulx <eeppeliteloop@gmail.com>
Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
lib/graph/notification/notification.c

index 9dc64d796dcfe99060bcca9877ec8b0928c50359..692f740cb95bb402d85453654f7d5ac15663b6db 100644 (file)
@@ -42,17 +42,3 @@ enum bt_notification_type bt_notification_get_type(
 {
        return notification ? notification->type : BT_NOTIFICATION_TYPE_UNKNOWN;
 }
-
-struct bt_ctf_stream *bt_notification_get_stream(
-               struct bt_notification *notification)
-{
-       struct bt_ctf_stream *stream = NULL;
-
-       if (!notification || !notification->get_stream) {
-               goto end;
-       }
-
-       stream = notification->get_stream(notification);
-end:
-       return stream;
-}
This page took 0.026872 seconds and 4 git commands to generate.