From 27ffa115f3a2160fff11a534b4e9d4de07432e60 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ma=C3=ABlle=20Salmon?= Date: Fri, 3 Jul 2026 15:59:31 +0200 Subject: [PATCH] chore: rm unused lines --- R/make.R | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/R/make.R b/R/make.R index 8e70a149812..dad9f8404a4 100644 --- a/R/make.R +++ b/R/make.R @@ -524,13 +524,6 @@ graph.full.bipartite <- function( n1 <- as.numeric(n1) n2 <- as.numeric(n2) directed <- as.logical(directed) - mode1 <- switch( - igraph_match_arg(mode), - "out" = 1, - "in" = 2, - "all" = 3, - "total" = 3 - ) res <- full_bipartite_impl( n1 = n1, @@ -2600,13 +2593,6 @@ make_full_bipartite_graph <- function( n1 <- as.numeric(n1) n2 <- as.numeric(n2) directed <- as.logical(directed) - mode1 <- switch( - igraph_match_arg(mode), - "out" = 1, - "in" = 2, - "all" = 3, - "total" = 3 - ) res <- full_bipartite_impl( n1 = n1,