Subject: | [PATCH] Remove unnecessary "require UNVIERSAL" |
Date: | Thu, 18 Jun 2015 01:04:33 +0200 |
To: | bug-version [...] rt.cpan.org |
From: | ilmari [...] ilmari.org (Dagfinn Ilmari Mannsåker) |
It has never been necessary to load it explicitly, since all the methods
are provided by the perl core. Now that it doesn't export anything any
longer (as of v5.22), it might go away in a future version of perl.
--
"The surreality of the universe tends towards a maximum" -- Skud's Law
"Never formulate a law or axiom that you're not prepared to live with
the consequences of." -- Skud's Meta-Law
From 42d423b1be59c4a6fa13eb17215cc755eeb2d28c Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Dagfinn=20Ilmari=20Manns=C3=A5ker?= <ilmari@ilmari.org>
Date: Thu, 18 Jun 2015 00:01:48 +0100
Subject: [PATCH] Remove unnecessary "require UNVIERSAL"
It has never been necessary to load it explicitly, since all the methods
are provided by the perl core. Now that it doesn't export anything any
longer (as of v5.22), it might go away in a future version of perl.
---
vperl/vpp.pm | 1 -
1 file changed, 1 deletion(-)
diff --git a/vperl/vpp.pm b/vperl/vpp.pm
index 5c18a5f..9284c73 100644
--- a/vperl/vpp.pm
+++ b/vperl/vpp.pm
@@ -807,7 +807,6 @@ sub stringify {
}
sub vcmp {
- require UNIVERSAL;
my ($left,$right,$swap) = @_;
my $class = ref($left);
unless ( UNIVERSAL::isa($right, $class) ) {
--
2.1.4