From 753993c8f4b28b13fd9c984b690459d4cca03174 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adam=20Zieli=C5=84ski?= Date: Thu, 19 Dec 2024 14:57:26 +0100 Subject: [PATCH] Remove the unimplemented get_reentrancy_cursor method --- .../entity-readers/WP_Filesystem_To_Post_Hierarchy.php | 8 -------- 1 file changed, 8 deletions(-) diff --git a/packages/playground/data-liberation/src/entity-readers/WP_Filesystem_To_Post_Hierarchy.php b/packages/playground/data-liberation/src/entity-readers/WP_Filesystem_To_Post_Hierarchy.php index 3e99e999a2..139f737f19 100644 --- a/packages/playground/data-liberation/src/entity-readers/WP_Filesystem_To_Post_Hierarchy.php +++ b/packages/playground/data-liberation/src/entity-readers/WP_Filesystem_To_Post_Hierarchy.php @@ -242,12 +242,4 @@ protected function choose_relevant_files( $paths ) { } return $filtered_paths; } - - /** - * @TODO: Either implement this method, or introduce a concept of - * reentrant and non-reentrant entity readers. - */ - public function get_reentrancy_cursor() { - return ''; - } }