Removed apparently unused piece of code, that prevents the use of ->trace() to slurp...
[p5sagit/App-FatPacker.git] / lib / App / FatPacker.pm
index 8cf5462..05c8db7 100644 (file)
@@ -101,12 +101,7 @@ sub script_command_trace {
 sub trace {
   my ($self, %opts) = @_;
 
-  my $capture;
-
-  my $output = $opts{output} || do {
-    $capture++; '>&STDOUT'
-  };
-
+  my $output = $opts{output};
   my $trace_opts = join ',', $output||'>&STDOUT', @{$opts{use}||[]};
 
   local $ENV{PERL5OPT} = '-MApp::FatPacker::Trace='.$trace_opts;