Don't autodie if this has a problem.
This commit is contained in:
parent
877f50996f
commit
ca31ce7c8f
1 changed files with 3 additions and 1 deletions
|
@ -127,7 +127,9 @@ sub FindReimbursementTicketFromList($@) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
close $rtReimburseFH;
|
{ no autodie qw(:all);
|
||||||
|
close $rtReimburseFH;
|
||||||
|
}
|
||||||
last if defined $reimbursementTicket;
|
last if defined $reimbursementTicket;
|
||||||
}
|
}
|
||||||
return $reimbursementTicket;
|
return $reimbursementTicket;
|
||||||
|
|
Loading…
Reference in a new issue