From dac4979cf4bffd6eaac2b0800bf59295818fff81 Mon Sep 17 00:00:00 2001 From: James E Keenan Date: Tue, 23 Feb 2021 09:02:03 -0500 Subject: [PATCH] Temporarily uncuddle the 'else's --- ext/Pod-Html/t/pod2html-lib.pl | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/ext/Pod-Html/t/pod2html-lib.pl b/ext/Pod-Html/t/pod2html-lib.pl index 9c531cc..8725b0a 100644 --- a/ext/Pod-Html/t/pod2html-lib.pl +++ b/ext/Pod-Html/t/pod2html-lib.pl @@ -62,8 +62,7 @@ sub convert_n_test { for my $sw (keys %{$p2h_args_ref}) { if ($no_arg_switches{$sw}) { $args_table{$sw} = undef; - } - else { + } else { $args_table{$sw} = $p2h_args_ref->{$sw}; } } @@ -72,8 +71,7 @@ sub convert_n_test { for my $k (keys %args_table) { if (defined $args_table{$k}) { push @args_list, "--" . $k . "=" . $args_table{$k}; - } - else { + } else { push @args_list, "--" . $k; } } -- 1.8.3.1