projects
/
dbsrgits/DBIx-Class.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
07d0bba
)
Stop importing all the POSIX functions
Dagfinn Ilmari Mannsåker [Wed, 3 Jun 2015 20:40:06 +0000 (21:40 +0100)]
The only one used is called fully-qualified anyway
t/cdbi/testlib/Log.pm
patch
|
blob
|
blame
|
history
diff --git
a/t/cdbi/testlib/Log.pm
b/t/cdbi/testlib/Log.pm
index
4f90ed1
..
362b61e
100644
(file)
--- a/
t/cdbi/testlib/Log.pm
+++ b/
t/cdbi/testlib/Log.pm
@@
-7,7
+7,7
@@
use strict;
use base 'MyBase';
use Time::Piece::MySQL;
-use POSIX;
+use POSIX ();
__PACKAGE__->set_table();
__PACKAGE__->columns(All => qw/id message datetime_stamp/);