about summary refs log tree commit
path: root/lib/Net/NNTP.pm
diff options
context:
space:
mode:
authorSteve Hay <steve.m.hay@googlemail.com>2014-06-04 09:36:47 +0100
committerSteve Hay <steve.m.hay@googlemail.com>2014-06-04 09:36:47 +0100
commitd282356dcbd6d6033c3faa48338e09621a169a5d (patch)
tree8943c519ba8d96f6310b7f3ace82edf3dee71988 /lib/Net/NNTP.pm
parentffe94b38e1c9e3ec98aff466d9f8c03d9b4dbf04 (diff)
downloadperl-libnet-d282356dcbd6d6033c3faa48338e09621a169a5d.tar.gz
Use 5.008001, strict and warnings throughout
Diffstat (limited to 'lib/Net/NNTP.pm')
-rw-r--r--lib/Net/NNTP.pm14
1 files changed, 8 insertions, 6 deletions
diff --git a/lib/Net/NNTP.pm b/lib/Net/NNTP.pm
index 07c3737..ee023f4 100644
--- a/lib/Net/NNTP.pm
+++ b/lib/Net/NNTP.pm
@@ -6,17 +6,19 @@
 
 package Net::NNTP;
 
+use 5.008001;
+
 use strict;
-use vars qw(@ISA $VERSION $debug);
+use warnings;
+
+use Carp;
 use IO::Socket;
 use Net::Cmd;
-use Carp;
-use Time::Local;
 use Net::Config;
+use Time::Local;
 
-$VERSION = "2.26";
-@ISA     = qw(Net::Cmd IO::Socket::INET);
-
+our $VERSION = "2.27";
+our @ISA     = qw(Net::Cmd IO::Socket::INET);
 
 sub new {
   my $self = shift;