Merge branch 'keyword-rewrite' into keyword-rewrite-magic
[p5sagit/Function-Parameters.git] / lib / Function / Parameters.pm
index 0c0db2b..4bb18a8 100644 (file)
@@ -7,11 +7,10 @@ use warnings;
 
 use XSLoader;
 BEGIN {
-       our $VERSION = '0.05_02';
+       our $VERSION = '0.05_03';
        XSLoader::load;
 }
 
-use B::Hooks::EndOfScope qw(on_scope_end);
 use Carp qw(confess);
 use bytes ();
 
@@ -96,12 +95,6 @@ sub unimport {
        }
 }
 
-sub _fini {
-       on_scope_end {
-               xs_fini;
-       };
-}
-
 
 'ok'