Skip to content

Commit

Permalink
remove indirect object notation
Browse files Browse the repository at this point in the history
  • Loading branch information
chorny committed Apr 12, 2015
1 parent 968a5e6 commit 10d2b3e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Apache/Session/Informix.pm
Expand Up @@ -24,8 +24,8 @@ use Apache::Session::Serialize::Base64;
sub populate {
my $self = shift;

$self->{object_store} = new Apache::Session::Store::Informix $self;
$self->{lock_manager} = new Apache::Session::Lock::Null $self;
$self->{object_store} = Apache::Session::Store::Informix->new($self);
$self->{lock_manager} = Apache::Session::Lock::Null->new($self);
$self->{generate} = \&Apache::Session::Generate::MD5::generate;
$self->{validate} = \&Apache::Session::Generate::MD5::validate;
$self->{serialize} = \&Apache::Session::Serialize::Base64::serialize;
Expand Down

0 comments on commit 10d2b3e

Please sign in to comment.