Checking in changes prior to tagging of version 0.09_02. Changelog diff is:
[catagits/Web-Session.git] / lib / Plack / Session / Store / Null.pm
index 329fc9e..a68193b 100644 (file)
@@ -2,17 +2,13 @@ package Plack::Session::Store::Null;
 use strict;
 use warnings;
 
-our $VERSION   = '0.03';
+our $VERSION   = '0.09_02';
 our $AUTHORITY = 'cpan:STEVAN';
 
 sub new     { bless {} => shift }
 sub fetch   {}
 sub store   {}
-sub delete  {}
-sub cleanup {}
-sub persist {}
-
-sub dump_session { +{} }
+sub remove  {}
 
 1;