Skip Menu |

This queue is for tickets about the version CPAN distribution.

Report information
The Basics
Id: 105315
Status: resolved
Priority: 0/
Queue: version

People
Owner: Nobody in particular
Requestors: ilmari [...] ilmari.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



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
On Wed Jun 17 19:05:05 2015, ilmari@ilmari.org wrote: Show quoted text
> > 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. >
Resolved in 0.9913