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 Mar 20, 2017
1 parent e7922ba commit fa3c7c6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Apache/Session/MySQL/NoLock.pm
Expand Up @@ -24,8 +24,8 @@ use Apache::Session::Serialize::Storable;
sub populate {
my $self = shift;

$self->{object_store} = new Apache::Session::Store::MySQL $self;
$self->{lock_manager} = new Apache::Session::Lock::Null $self;
$self->{object_store} = Apache::Session::Store::MySQL->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::Storable::serialize;
Expand Down

0 comments on commit fa3c7c6

Please sign in to comment.