Skip to content

Commit

Permalink
Fix lint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
nigelhorne committed Mar 30, 2024
1 parent fe3d433 commit fd0947e
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions gedcom
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# gedcom - produce data from a gedcom file

# Author Nigel Horne: [email protected]
# Copyright (C) 2015-2023, Nigel Horne
# Copyright (C) 2015-2024, Nigel Horne

# Usage is subject to licence terms.
# The licence terms of this software are as follows:
Expand Down Expand Up @@ -10905,15 +10905,17 @@ sub journey
my $person = $params{'person'};
my $arrival = $params{'arrival'};
my $departure = $params{'departure'};
my @spouses = @{$params{'spouses'}} if($params{'spouses'});
my @children = @{$params{'children'}} if($params{'children'});

my @spouses;
my @children;
my $yod;
my $yoa;
my $dod = $departure->date();
my $doa = $arrival->date();
my $only_have_departure_year;

@spouses = @{$params{'spouses'}} if($params{'spouses'});
@children = @{$params{'children'}} if($params{'children'});

# my $i = 0;
# while((my @call_details = (caller($i++)))) {
# print STDERR "\t", $call_details[1], ':', $call_details[2], ' calling function ', $call_details[3], "\n";
Expand Down

0 comments on commit fd0947e

Please sign in to comment.