]> Dogcows Code - chaz/git-codeowners/blobdiff - lib/App/Codeowners/Formatter/Table.pm
Version 0.49
[chaz/git-codeowners] / lib / App / Codeowners / Formatter / Table.pm
index cba514782f81f7cbb5014574ce907ab1916ac214..2309e6acce971f3d15fcaf57f1a3d7c4ff32d10e 100644 (file)
@@ -5,12 +5,11 @@ package App::Codeowners::Formatter::Table;
 use warnings;
 use strict;
 
-our $VERSION = '0.48'; # VERSION
+our $VERSION = '0.49'; # VERSION
 
 use parent 'App::Codeowners::Formatter';
 
 use App::Codeowners::Util qw(stringify);
-use Encode qw(encode);
 
 sub finish {
     my $self    = shift;
@@ -23,7 +22,7 @@ sub finish {
         rows        => [$self->columns, map { [map { stringify($_) } @$_] } @$results],
         backend     => $ENV{PERL_TEXT_TABLE},
     );
-    print { $self->handle } encode('UTF-8', $table);
+    print { $self->handle } $table;
 }
 
 1;
@@ -40,7 +39,7 @@ App::Codeowners::Formatter::Table - Format codeowners output as a table
 
 =head1 VERSION
 
-version 0.48
+version 0.49
 
 =head1 DESCRIPTION
 
This page took 0.020216 seconds and 4 git commands to generate.