fix accidental exports
Chris Prather [Thu, 30 Apr 2009 04:04:58 +0000 (00:04 -0400)]
lib/Moose/Object.pm

index 974908d..f33901a 100644 (file)
@@ -5,7 +5,7 @@ use strict;
 use warnings;
 
 use Scalar::Util;
-use Devel::GlobalDestruction qw(in_global_destruction);
+use Devel::GlobalDestruction ();
 
 use if ( not our $__mx_is_compiled ), 'Moose::Meta::Class';
 use if ( not our $__mx_is_compiled ), metaclass => 'Moose::Meta::Class';
@@ -82,12 +82,12 @@ sub DESTROY {
         # localize the $@ ...
         local $@;
         # run DEMOLISHALL ourselves, ...
-        $_[0]->DEMOLISHALL(in_global_destruction);
+        $_[0]->DEMOLISHALL(Devel::GlobalDestruction::in_global_destruction);
         # and return ...
         return;
     }
     # otherwise it is normal destruction
-    $_[0]->DEMOLISHALL(in_global_destruction);
+    $_[0]->DEMOLISHALL(Devel::GlobalDestruction::in_global_destruction);
 }
 
 # support for UNIVERSAL::DOES ...