From e7fc6eb10ee4e401f75fbf3df1b734c94ae3b1b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kirill=20M=C3=BCller?= Date: Sun, 21 Aug 2022 14:57:11 +0200 Subject: [PATCH] Cleanup --- R/print-str.R | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/R/print-str.R b/R/print-str.R index 185d4b4cb..3d9e1a62e 100644 --- a/R/print-str.R +++ b/R/print-str.R @@ -37,9 +37,9 @@ obj_print <- function(x, ..., max = NULL) { } } - obj_print_header_dispatch(x, ...) - obj_print_data_dispatch(x_max, ...) - obj_print_footer_dispatch(x, ...) + obj_print_header(x, ...) + obj_print_data(x_max, ...) + obj_print_footer(x, ...) if (delta > 0) { max_print <- attr(max, "max_print")