summaryrefslogtreecommitdiff
path: root/Master/tlpkg/tlperl/lib/URI/nntp.pm
diff options
context:
space:
mode:
Diffstat (limited to 'Master/tlpkg/tlperl/lib/URI/nntp.pm')
-rw-r--r--Master/tlpkg/tlperl/lib/URI/nntp.pm6
1 files changed, 4 insertions, 2 deletions
diff --git a/Master/tlpkg/tlperl/lib/URI/nntp.pm b/Master/tlpkg/tlperl/lib/URI/nntp.pm
index af61e036cc7..b4fe5d3470b 100644
--- a/Master/tlpkg/tlperl/lib/URI/nntp.pm
+++ b/Master/tlpkg/tlperl/lib/URI/nntp.pm
@@ -1,6 +1,8 @@
package URI::nntp; # draft-gilman-news-url-01
-require URI::news;
-@ISA=qw(URI::news);
+use strict;
+use warnings;
+
+use parent 'URI::news';
1;