Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[perl] Fix use of weak references
Use weak references only where required to avoid circular references.

Signed-off-by: Michael Brown <mbrown@fensystems.co.uk>
  • Loading branch information
mcb30 committed Jan 15, 2014
1 parent 9a911b6 commit a17811e
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion perl/lib/qPXE/Machine.pm
Expand Up @@ -37,7 +37,6 @@ has "lab" => (
is => "ro",
isa => "qPXE::Lab",
required => 1,
weak_ref => 1,
);

=item C<domain>
Expand Down
1 change: 0 additions & 1 deletion perl/lib/qPXE/Network.pm
Expand Up @@ -33,7 +33,6 @@ has "lab" => (
is => "ro",
isa => "qPXE::Lab",
required => 1,
weak_ref => 1,
);

=item C<network>
Expand Down
1 change: 0 additions & 1 deletion perl/lib/qPXE/Test.pm
Expand Up @@ -29,7 +29,6 @@ has "lab" => (
is => "ro",
isa => "qPXE::Lab",
required => 1,
weak_ref => 1,
);

=item C<uuid_bin>
Expand Down

0 comments on commit a17811e

Please sign in to comment.