From 8d6fbe2997d2510aa8439cc09caa358748c3fe98 Mon Sep 17 00:00:00 2001 From: "Tom A. Wagner" Date: Mon, 28 Jun 2021 13:24:39 +0200 Subject: [PATCH] Remove outdated doc comment --- src/view/graph_view.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/view/graph_view.rs b/src/view/graph_view.rs index e22dc74..7798022 100644 --- a/src/view/graph_view.rs +++ b/src/view/graph_view.rs @@ -276,10 +276,6 @@ impl GraphView { } } - /// Add a link to the graph. - /// - /// `add_link` takes three arguments: `link_id` is the id of the link as assigned by the pipewire server, - /// `from` and `to` are the id's of the ingoing and outgoing port, respectively. pub fn add_link(&self, link_id: u32, link: crate::PipewireLink) { let private = imp::GraphView::from_instance(self); private.links.borrow_mut().insert(link_id, link);