]> git.donarmstrong.com Git - perltidy.git/commitdiff
removed some unused variables
authorSteve Hancock <perltidy@users.sourceforge.net>
Tue, 12 May 2020 11:58:14 +0000 (04:58 -0700)
committerSteve Hancock <perltidy@users.sourceforge.net>
Tue, 12 May 2020 11:58:14 +0000 (04:58 -0700)
lib/Perl/Tidy/Formatter.pm

index 5330ba4fc9b96e8a1e5ef2fda76eed146436edf3..e1c987fa5f6127a4a60cefb47307ad198d474021 100644 (file)
@@ -3112,17 +3112,11 @@ sub respace_tokens {
         my $jmax = -1;
         if ( defined($Kfirst) ) { $jmax = $Klast - $Kfirst }
         my $input_line         = $line_of_tokens->{_line_text};
-        my $in_continued_quote = my $starting_in_quote =
-          $line_of_tokens->{_starting_in_quote};
-        my $in_quote        = $line_of_tokens->{_ending_in_quote};
-        my $ending_in_quote = $in_quote;
-        my $guessed_indentation_level =
-          $line_of_tokens->{_guessed_indentation_level};
 
         my $is_static_block_comment = 0;
 
         # Handle a continued quote..
-        if ($in_continued_quote) {
+        if ($line_of_tokens->{_starting_in_quote} ) {
 
             # A line which is entirely a quote or pattern must go out
             # verbatim.  Note: the \n is contained in $input_line.