From b5675c354ad45214a12f9bec07968a0f174ee09a Mon Sep 17 00:00:00 2001 From: brian d foy Date: Thu, 29 Feb 2024 18:26:03 -0500 Subject: [PATCH] Removed unused functions These don't even work with the current data structure --- lib/Business/ISBN/Data.pm | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/lib/Business/ISBN/Data.pm b/lib/Business/ISBN/Data.pm index cc8f7be..b0393b1 100644 --- a/lib/Business/ISBN/Data.pm +++ b/lib/Business/ISBN/Data.pm @@ -480,16 +480,6 @@ $Business::ISBN::MAX_COUNTRY_CODE_LENGTH = length( package # Hide from PAUSE Business::ISBN; -sub isbn_group_code_string_from_number { - return if $_[0] =~ /\A_/; - return $Business::ISBN::country_data{ $_[0] }[0] || ''; - } - -sub isbn_publisher_ranges_from_group_number { - return if $_[0] =~ /\A_/; - return $Business::ISBN::country_data{ $_[0] }[1] || []; - } - sub isbn_data_source { return $Business::ISBN::country_data{ '_source' } || __FILE__ }