diff options
-rw-r--r-- | lib/Travel/Status/DE/HAFAS/StopFinder.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Travel/Status/DE/HAFAS/StopFinder.pm b/lib/Travel/Status/DE/HAFAS/StopFinder.pm index 93e0639..2d038b5 100644 --- a/lib/Travel/Status/DE/HAFAS/StopFinder.pm +++ b/lib/Travel/Status/DE/HAFAS/StopFinder.pm @@ -7,7 +7,7 @@ use utf8; no if $] >= 5.018, warnings => 'experimental::smartmatch'; -use Carp qw(confess); +use Carp qw(confess); use Encode qw(decode); use JSON; use LWP::UserAgent; @@ -18,7 +18,7 @@ sub new { my ( $obj, %conf ) = @_; my $lang = $conf{language} // 'd'; - my $ua = $conf{ua}; + my $ua = $conf{ua}; if ( not $ua ) { my %lwp_options = %{ $conf{lwp_options} // { timeout => 10 } }; |