remove empty DESTROY()
This commit is contained in:
parent
625905a193
commit
197be1515c
@ -42,8 +42,6 @@ sub _restart {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
sub DESTROY { }
|
|
||||||
|
|
||||||
sub version { $VERSION . ($git ? "/$git" : "") }
|
sub version { $VERSION . ($git ? "/$git" : "") }
|
||||||
|
|
||||||
sub TRACE_LEVEL { $TraceLevel }; # leave for plugin compatibility
|
sub TRACE_LEVEL { $TraceLevel }; # leave for plugin compatibility
|
||||||
@ -261,14 +259,14 @@ sub _config_from_file {
|
|||||||
$visited ||= [];
|
$visited ||= [];
|
||||||
push @{$visited}, $configfile;
|
push @{$visited}, $configfile;
|
||||||
|
|
||||||
open CF, "<$configfile"
|
open my $CF, '<', $configfile
|
||||||
or warn "$$ could not open configfile $configfile: $!" and return;
|
or warn "$$ could not open configfile $configfile: $!" and return;
|
||||||
my @config = <CF>;
|
my @config = <$CF>;
|
||||||
chomp @config;
|
chomp @config;
|
||||||
@config = grep { length($_) and $_ !~ m/^\s*#/ and $_ =~ m/\S/ }
|
@config = grep { length($_) and $_ !~ m/^\s*#/ and $_ =~ m/\S/ }
|
||||||
map { s/^\s+//; s/\s+$//; $_; } # trim leading/trailing whitespace
|
map { s/^\s+//; s/\s+$//; $_; } # trim leading/trailing whitespace
|
||||||
@config;
|
@config;
|
||||||
close CF;
|
close $CF;
|
||||||
|
|
||||||
my $pos = 0;
|
my $pos = 0;
|
||||||
while ($pos < @config) {
|
while ($pos < @config) {
|
||||||
|
Loading…
Reference in New Issue
Block a user