[pve-devel] [PATCH common v4 2/3] cli: code cleanup
Philip Abernethy
p.abernethy at proxmox.com
Mon Oct 16 09:50:17 CEST 2017
Removes obsolete subroutine and unused Dumper
---
src/PVE/CLIHandler.pm | 24 ------------------------
1 file changed, 24 deletions(-)
diff --git a/src/PVE/CLIHandler.pm b/src/PVE/CLIHandler.pm
index 84cefa3..ac83972 100644
--- a/src/PVE/CLIHandler.pm
+++ b/src/PVE/CLIHandler.pm
@@ -2,7 +2,6 @@ package PVE::CLIHandler;
use strict;
use warnings;
-use Data::Dumper;
use PVE::SafeSyslog;
use PVE::Exception qw(raise raise_param_exc);
@@ -472,29 +471,6 @@ complete -o default -C '$exename bashcomplete' $exename
__EOD__
}
-sub find_cli_class_source {
- my ($name) = @_;
-
- my $filename;
-
- $name =~ s/-/_/g;
-
- my $cpath = "PVE/CLI/${name}.pm";
- my $spath = "PVE/Service/${name}.pm";
- foreach my $p (@INC) {
- foreach my $s (($cpath, $spath)) {
- my $testfn = "$p/$s";
- if (-f $testfn) {
- $filename = $testfn;
- last;
- }
- }
- last if defined($filename);
- }
-
- return $filename;
-}
-
sub generate_asciidoc_synopsys {
my ($class) = @_;
$class->generate_asciidoc_synopsis();
--
2.11.0
More information about the pve-devel
mailing list