summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHannes Duerr <h.duerr@proxmox.com>2025-02-10 15:19:23 +0100
committerThomas Lamprecht <t.lamprecht@proxmox.com>2025-03-06 10:00:21 +0100
commit81ee673f6646eb4e3caef513096783acf1a6d78e (patch)
treec7afb13eed17978c4ad0877ad1809caaffdd251d
parentbd7c331536ed3aa9ba53b94a9440f4c18b724c26 (diff)
tree-wide: remove unused Data::Dumper module inclusion
Signed-off-by: Hannes Duerr <h.duerr@proxmox.com> [TL: drop all other unused Dumper use statements] Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
-rw-r--r--src/PVE/API2/Network/SDN/Zones/Content.pm1
-rw-r--r--src/PVE/Network/SDN.pm1
-rw-r--r--src/PVE/Network/SDN/Controllers.pm1
-rw-r--r--src/PVE/Network/SDN/Controllers/Plugin.pm1
-rw-r--r--src/PVE/Network/SDN/Dns.pm1
-rw-r--r--src/PVE/Network/SDN/Dns/Plugin.pm1
-rw-r--r--src/PVE/Network/SDN/Ipams/Plugin.pm1
7 files changed, 0 insertions, 7 deletions
diff --git a/src/PVE/API2/Network/SDN/Zones/Content.pm b/src/PVE/API2/Network/SDN/Zones/Content.pm
index 66f49df..211e71b 100644
--- a/src/PVE/API2/Network/SDN/Zones/Content.pm
+++ b/src/PVE/API2/Network/SDN/Zones/Content.pm
@@ -2,7 +2,6 @@ package PVE::API2::Network::SDN::Zones::Content;
use strict;
use warnings;
-use Data::Dumper;
use PVE::SafeSyslog;
use PVE::Cluster;
diff --git a/src/PVE/Network/SDN.pm b/src/PVE/Network/SDN.pm
index 4ac9720..0fe7c9f 100644
--- a/src/PVE/Network/SDN.pm
+++ b/src/PVE/Network/SDN.pm
@@ -3,7 +3,6 @@ package PVE::Network::SDN;
use strict;
use warnings;
-use Data::Dumper;
use JSON;
use PVE::INotify;
diff --git a/src/PVE/Network/SDN/Controllers.pm b/src/PVE/Network/SDN/Controllers.pm
index fd7ad54..9e8f3aa 100644
--- a/src/PVE/Network/SDN/Controllers.pm
+++ b/src/PVE/Network/SDN/Controllers.pm
@@ -3,7 +3,6 @@ package PVE::Network::SDN::Controllers;
use strict;
use warnings;
-use Data::Dumper;
use JSON;
use PVE::Tools qw(extract_param dir_glob_regex run_command);
diff --git a/src/PVE/Network/SDN/Controllers/Plugin.pm b/src/PVE/Network/SDN/Controllers/Plugin.pm
index 5579513..d6ffc5f 100644
--- a/src/PVE/Network/SDN/Controllers/Plugin.pm
+++ b/src/PVE/Network/SDN/Controllers/Plugin.pm
@@ -7,7 +7,6 @@ use PVE::Tools;
use PVE::JSONSchema;
use PVE::Cluster;
-use Data::Dumper;
use PVE::JSONSchema qw(get_standard_option);
use base qw(PVE::SectionConfig);
diff --git a/src/PVE/Network/SDN/Dns.pm b/src/PVE/Network/SDN/Dns.pm
index c2e153a..581b467 100644
--- a/src/PVE/Network/SDN/Dns.pm
+++ b/src/PVE/Network/SDN/Dns.pm
@@ -3,7 +3,6 @@ package PVE::Network::SDN::Dns;
use strict;
use warnings;
-use Data::Dumper;
use JSON;
use PVE::Tools qw(extract_param dir_glob_regex run_command);
diff --git a/src/PVE/Network/SDN/Dns/Plugin.pm b/src/PVE/Network/SDN/Dns/Plugin.pm
index 07d0be1..9b60b2d 100644
--- a/src/PVE/Network/SDN/Dns/Plugin.pm
+++ b/src/PVE/Network/SDN/Dns/Plugin.pm
@@ -9,7 +9,6 @@ use PVE::Cluster;
use HTTP::Request;
use LWP::UserAgent;
-use Data::Dumper;
use PVE::JSONSchema qw(get_standard_option);
use base qw(PVE::SectionConfig);
diff --git a/src/PVE/Network/SDN/Ipams/Plugin.pm b/src/PVE/Network/SDN/Ipams/Plugin.pm
index 8ab405e..249a48d 100644
--- a/src/PVE/Network/SDN/Ipams/Plugin.pm
+++ b/src/PVE/Network/SDN/Ipams/Plugin.pm
@@ -10,7 +10,6 @@ use HTTP::Request;
use LWP::UserAgent;
use JSON;
-use Data::Dumper;
use PVE::JSONSchema qw(get_standard_option);
use base qw(PVE::SectionConfig);