From 820949f46f137949ba1ccbeb4ba945d10b905c40 Mon Sep 17 00:00:00 2001 From: Max Carrara Date: Thu, 31 Oct 2024 18:07:19 +0100 Subject: [PATCH] section config: make subroutine `delete_from_config` private because it's just an internal helper method and isn't used anywhere outside of the package. Signed-off-by: Max Carrara --- src/PVE/SectionConfig.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PVE/SectionConfig.pm b/src/PVE/SectionConfig.pm index 77d0c17..78a7abe 100644 --- a/src/PVE/SectionConfig.pm +++ b/src/PVE/SectionConfig.pm @@ -1610,7 +1610,7 @@ C<$config>. =cut -sub delete_from_config { +my sub delete_from_config { my ($config, $option_schema, $new_options, $to_delete) = @_; for my $k ($to_delete->@*) {