Fix undefined variable use
This commit is contained in:
parent
237cafc34e
commit
243a1c9224
1 changed files with 1 additions and 1 deletions
|
|
@ -333,7 +333,7 @@ sub compute ($$$;$$)
|
|||
|
||||
my $result = (
|
||||
# No condition on refs nor qversion?
|
||||
not $self->{ref}
|
||||
! defined $self->{ref}
|
||||
# Condition on refs
|
||||
|| grep { $self->{ref} eq $_ } keys %$ids
|
||||
);
|
||||
|
|
|
|||
Reference in a new issue