Revert the change that unimported strict & warnings on no Moose(::Role,::Exporter)
[gitmo/Moose.git] / lib / Moose / Exporter.pm
index 717b732..8ed1de3 100644 (file)
@@ -475,8 +475,6 @@ sub _make_unimport_sub {
             $export_recorder,
             $is_reexport,
         );
-        strict->unimport;
-        warnings->unimport;
     };
 }
 
@@ -569,11 +567,6 @@ sub import {
     warnings->import;
 }
 
-sub unimport {
-    strict->unimport;
-    warnings->unimport;
-}
-
 1;
 
 __END__