From: Jesse Luehrs Date: Thu, 21 Apr 2011 13:39:34 +0000 (-0500) Subject: this is unnecessary (and broken on <5.8.8) X-Git-Tag: 2.0100~210 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=2b4cc988a231ebd79503631316876f0f781fc46b;hp=8aae1a4cb6c8c058fd200d404b2aa50110bc9209;p=gitmo%2FMoose.git this is unnecessary (and broken on <5.8.8) 'use Class::MOP' already does this, since the cmop merge --- diff --git a/lib/Moose/Exporter.pm b/lib/Moose/Exporter.pm index 19fd187..ba5e443 100644 --- a/lib/Moose/Exporter.pm +++ b/lib/Moose/Exporter.pm @@ -3,15 +3,6 @@ package Moose::Exporter; use strict; use warnings; -use XSLoader; - -BEGIN { - XSLoader::load( - 'Moose', - $Moose::Exporter::{VERSION} ? ${ $Moose::Exporter::{VERSION} } : () - ); -} - use Class::MOP; use List::MoreUtils qw( first_index uniq ); use Moose::Util::MetaRole;