Skip to content

Commit

Permalink
Perltidy fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
jkegl@cpan.org committed May 17, 2009
1 parent e801f1a commit 1ba6c65
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Test-Weaken/t/contents.t
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ sub construct_more_data {

sub new {
my ($class) = @_;
my $self = [];
my $scalar = 42;
my $self = \$scalar;
$data{ $self + 0 } = construct_data;
$moredata{ $self + 0 } = construct_more_data;
return bless $self, $class;
Expand Down

0 comments on commit 1ba6c65

Please sign in to comment.