whitespace

This commit is contained in:
Dima Kogan 2011-01-29 20:02:29 -08:00
parent d9d99d3c34
commit 38265747c5

View File

@ -37,9 +37,9 @@ if($options{stream})
$options{stream} = undef; $options{stream} = undef;
} }
$dataQueue = Thread::Queue->new(); $dataQueue = Thread::Queue->new();
my $addThr = threads->create(\&mainThread); my $addThr = threads->create(\&mainThread);
my $plotThr = threads->create(\&plotThread); my $plotThr = threads->create(\&plotThread);
while(<>) while(<>)
{ {
@ -61,9 +61,7 @@ if($options{stream})
$addThr->join(); $addThr->join();
} }
else else
{ { mainThread(); }
mainThread();
}