Git.pm: add the "use warnings" pragma
[gitweb.git] / perl / Git.pm
index 65e6b32a0f6401bd749ea26700a3f59939db2aa5..7ec16e6dde3f1c6174dd38c0cc7d4358cd50df40 100644 (file)
@@ -9,6 +9,7 @@ package Git;
 
 use 5.008;
 use strict;
+use warnings;
 
 
 BEGIN {
@@ -101,7 +102,7 @@ =head1 DESCRIPTION
 
 
 use Carp qw(carp croak); # but croak is bad - throw instead
-use Error qw(:try);
+use Git::Error qw(:try);
 use Cwd qw(abs_path cwd);
 use IPC::Open2 qw(open2);
 use Fcntl qw(SEEK_SET SEEK_CUR);
@@ -1692,7 +1693,6 @@ sub DESTROY {
 # Pipe implementation for ActiveState Perl.
 
 package Git::activestate_pipe;
-use strict;
 
 sub TIEHANDLE {
        my ($class, @params) = @_;