diff options
Diffstat (limited to 'Master/tlpkg/tlperl/lib/URI/https.pm')
-rw-r--r-- | Master/tlpkg/tlperl/lib/URI/https.pm | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Master/tlpkg/tlperl/lib/URI/https.pm b/Master/tlpkg/tlperl/lib/URI/https.pm index 94f9bb19eb4..0937018797b 100644 --- a/Master/tlpkg/tlperl/lib/URI/https.pm +++ b/Master/tlpkg/tlperl/lib/URI/https.pm @@ -1,6 +1,9 @@ package URI::https; -require URI::http; -@ISA=qw(URI::http); + +use strict; +use warnings; + +use parent 'URI::http'; sub default_port { 443 } |