From 850488a8e77045fff5579c1a056f43b10cb4fcc2 Mon Sep 17 00:00:00 2001 From: Steve Hancock Date: Sun, 26 Apr 2020 06:31:46 -0700 Subject: [PATCH] removed some unused subs --- lib/Perl/Tidy/Formatter.pm | 36 ------------------------------------ 1 file changed, 36 deletions(-) diff --git a/lib/Perl/Tidy/Formatter.pm b/lib/Perl/Tidy/Formatter.pm index 06c40cc2..739b2543 100644 --- a/lib/Perl/Tidy/Formatter.pm +++ b/lib/Perl/Tidy/Formatter.pm @@ -739,42 +739,6 @@ sub new { return $formatter_self; } -# Future routines for storing new lines -sub push_line { - my ( $self, $rline ) = @_; - - # my $rline = $rlines->[$index_old]; - # push @{$rlines_new}, $rline; - return; -} - -sub push_old_line { - my ( $self, $index_old ) = @_; - - # TODO: This will copy line with index $index_old to the new line array - # my $rlines = $self->{rlines}; - # my $rline = $rlines->[$index_old]; - # $self->push_line($rline); - return; -} - -sub push_blank_line { - my ($self) = @_; - - # my $rline = ... - # $self->push_line($rline); - return; -} - -sub push_CODE_line { - my ( $self, $Kmin, $Kmax ) = @_; - - # TODO: This will store the values for one new line of CODE - # CHECK TOKEN RANGE HERE - # $self->push_line($rline); - return; -} - sub increment_valign_batch_count { my ($self) = shift; return ++$self->{valign_batch_count}; -- 2.39.5