diff options
author | Jesse Vincent <jesse@bestpractical.com> | 2010-03-11 22:52:42 +0100 |
---|---|---|
committer | Jesse Vincent <jesse@bestpractical.com> | 2010-03-11 23:30:17 +0100 |
commit | f83704b301c5cfe316ce4e0465c20f00d9e404d5 (patch) | |
tree | 09084aac802d09e541367eb34c18f484d4f5480c /cpan/Time-Piece | |
parent | b951c6bd21aaa8bad64b23f0ff9662ffff763ffa (diff) | |
download | perl-f83704b301c5cfe316ce4e0465c20f00d9e404d5.tar.gz |
[perl# 73490] Bump Time::Piece to a devel release that's newer than what
was in Blead but is old than the current updated CPAN release. Comment
out a now deprecated 'use UNIVERSAL' line to prevent warnings from
production code. It's bad form to ship software that deprecates things
and then keeps using them and warning. Thanks to xdg++ for the spotting.
Diffstat (limited to 'cpan/Time-Piece')
-rw-r--r-- | cpan/Time-Piece/Piece.pm | 4 | ||||
-rw-r--r-- | cpan/Time-Piece/Seconds.pm | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/cpan/Time-Piece/Piece.pm b/cpan/Time-Piece/Piece.pm index a42eb6a1e4..a7a602fa2c 100644 --- a/cpan/Time-Piece/Piece.pm +++ b/cpan/Time-Piece/Piece.pm @@ -9,7 +9,7 @@ require DynaLoader; use Time::Seconds; use Carp; use Time::Local; -use UNIVERSAL qw(isa); +#use UNIVERSAL qw(isa); # Commented out for Perl 5.12.0 by JRV to avoid a deprecation warning our @ISA = qw(Exporter DynaLoader); @@ -22,7 +22,7 @@ our %EXPORT_TAGS = ( ':override' => 'internal', ); -our $VERSION = '1.15'; +our $VERSION = '1.15_01'; bootstrap Time::Piece $VERSION; diff --git a/cpan/Time-Piece/Seconds.pm b/cpan/Time-Piece/Seconds.pm index 20883fc8ed..4aac9881cb 100644 --- a/cpan/Time-Piece/Seconds.pm +++ b/cpan/Time-Piece/Seconds.pm @@ -3,7 +3,7 @@ package Time::Seconds; use strict; use vars qw/@EXPORT @EXPORT_OK @ISA/; -use UNIVERSAL qw(isa); +# use UNIVERSAL qw(isa); # Commented out for Perl 5.12.0 by JRV to avoid a deprecation warning. @ISA = 'Exporter'; |