]> git.vpit.fr Git - perl/modules/B-RecDeparse.git/blobdiff - lib/B/RecDeparse.pm
Bump copyright year
[perl/modules/B-RecDeparse.git] / lib / B / RecDeparse.pm
index c5c5fa9be3fa40732248c2fe3b6a65bb220a1a48..a9ace562920d0a516f32958bcc93b4f41f35e9a6 100644 (file)
@@ -9,7 +9,7 @@ use B ();
 
 use Config;
 
-use base qw/B::Deparse/;
+use base qw<B::Deparse>;
 
 =head1 NAME
 
@@ -187,7 +187,7 @@ sub pp_gv {
   $body = $self->SUPER::pp_gv(@_);
  } else {
   $body = do {
-   local @{$self}{qw/brd_sub brd_cur/} = (0, $self->{brd_cur} + 1);
+   local @{$self}{qw<brd_sub brd_cur>} = (0, $self->{brd_cur} + 1);
    local $seen->{$name} = 1;
    'sub ' . $self->indent($self->deparse_sub($gv->CV));
   };
@@ -246,7 +246,7 @@ Tests code coverage report is available at L<http://www.profvince.com/perl/cover
 
 =head1 COPYRIGHT & LICENSE
 
-Copyright 2008,2009,2010 Vincent Pit, all rights reserved.
+Copyright 2008,2009,2010,2011 Vincent Pit, all rights reserved.
 
 This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.