summaryrefslogtreecommitdiff
path: root/lib/URI
diff options
context:
space:
mode:
Diffstat (limited to 'lib/URI')
-rw-r--r--lib/URI/WithBase.pm4
-rw-r--r--lib/URI/_idna.pm2
-rw-r--r--lib/URI/data.pm4
-rw-r--r--lib/URI/file/Base.pm2
-rw-r--r--lib/URI/ldapi.pm2
-rw-r--r--lib/URI/sip.pm2
6 files changed, 8 insertions, 8 deletions
diff --git a/lib/URI/WithBase.pm b/lib/URI/WithBase.pm
index 92321db..0f03ded 100644
--- a/lib/URI/WithBase.pm
+++ b/lib/URI/WithBase.pm
@@ -3,8 +3,8 @@ package URI::WithBase;
use strict;
use warnings;
-use URI;
-use Scalar::Util 'blessed';
+use URI ();
+use Scalar::Util qw(blessed);
our $VERSION = '5.06';
diff --git a/lib/URI/_idna.pm b/lib/URI/_idna.pm
index 0798d01..e4f734a 100644
--- a/lib/URI/_idna.pm
+++ b/lib/URI/_idna.pm
@@ -6,7 +6,7 @@ package URI::_idna;
use strict;
use warnings;
-use URI::_punycode qw(encode_punycode decode_punycode);
+use URI::_punycode qw(decode_punycode encode_punycode);
use Carp qw(croak);
our $VERSION = '5.06';
diff --git a/lib/URI/data.pm b/lib/URI/data.pm
index d0db011..a262fa6 100644
--- a/lib/URI/data.pm
+++ b/lib/URI/data.pm
@@ -7,8 +7,8 @@ use parent 'URI';
our $VERSION = '5.06';
-use MIME::Base64 qw(encode_base64 decode_base64);
-use URI::Escape qw(uri_unescape);
+use MIME::Base64 qw(decode_base64 encode_base64);
+use URI::Escape qw(uri_unescape);
sub media_type
{
diff --git a/lib/URI/file/Base.pm b/lib/URI/file/Base.pm
index 2b9ee49..23cfc82 100644
--- a/lib/URI/file/Base.pm
+++ b/lib/URI/file/Base.pm
@@ -3,7 +3,7 @@ package URI::file::Base;
use strict;
use warnings;
-use URI::Escape qw();
+use URI::Escape ();
our $VERSION = '5.06';
diff --git a/lib/URI/ldapi.pm b/lib/URI/ldapi.pm
index 42ec8c9..72d3756 100644
--- a/lib/URI/ldapi.pm
+++ b/lib/URI/ldapi.pm
@@ -7,7 +7,7 @@ our $VERSION = '5.06';
use parent qw(URI::_ldap URI::_generic);
-require URI::Escape;
+use URI::Escape ();
sub un_path {
my $self = shift;
diff --git a/lib/URI/sip.pm b/lib/URI/sip.pm
index 51f1045..85ca99d 100644
--- a/lib/URI/sip.pm
+++ b/lib/URI/sip.pm
@@ -12,7 +12,7 @@ use warnings;
use parent qw(URI::_server URI::_userpass);
-use URI::Escape qw(uri_unescape);
+use URI::Escape ();
our $VERSION = '5.06';