parallel: Indention.

This commit is contained in:
Ole Tange 2013-08-21 17:11:25 +02:00
parent 81a8a116b7
commit 2c587e4055

View file

@ -343,7 +343,7 @@ sub spreadstdin {
my $one_time_through;
my $blocksize = $opt::blocksize;
my $in = *STDIN;
piperead: while(1) {
while(1) {
my $anything_written = 0;
if(not read($in,substr($buf,length $buf,0),$blocksize)) {
# End-of-file
@ -351,7 +351,6 @@ sub spreadstdin {
# Force the while-loop once if everything was read by header reading
$one_time_through++ and last;
}
if($opt::r) {
# Remove empty lines
$buf=~s/^\s*\n//gm;
@ -4733,15 +4732,6 @@ sub populate {
# max line length is reached
# Returns: N/A
my $self = shift;
# if($opt::pipe) {
# # --pipe => Do no read any args
# $self->push([Arg->new("")]);
# return;
# }
# if($opt::roundrobin) {
# $self->push([Arg->new("")]);
# return;
# }
my $next_arg;
while (not $self->{'arg_queue'}->empty()) {
$next_arg = $self->{'arg_queue'}->get();
@ -5102,9 +5092,6 @@ sub replace_placeholders {
my $quote = shift;
my $context_replace = $self->{'context_replace'};
my $replaced;
# print ::my_dump($self);
if($self->{'context_replace'}) {
$replaced = $self->context_replace_placeholders($target,$quote);
} else {