2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-10 03:06:37 +00:00

55_GDS.pm: minor code improvement

git-svn-id: https://svn.fhem.de/fhem/trunk@8081 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
betateilchen 2015-02-24 17:37:22 +00:00
parent 86c5eea7df
commit c3c8ca7e38

View File

@ -1,4 +1,4 @@
# $Id$ # $Id: 55_GDS.pm 8080 2015-02-24 14:36:53Z betateilchen $
#################################################################################################### ####################################################################################################
# #
# 55_GDS.pm # 55_GDS.pm
@ -31,8 +31,8 @@ use warnings;
use feature qw/say switch/; use feature qw/say switch/;
use Time::HiRes qw(gettimeofday); use Time::HiRes qw(gettimeofday);
use Text::CSV; use Text::CSV;
eval {use Coro::LWP;}; eval "use Coro::LWP";
Log 1,"GDS: using Coro::LWP" unless @$; Log 4,"GDS: using Coro::LWP" unless $@;
use Net::FTP; use Net::FTP;
use List::MoreUtils 'first_index'; use List::MoreUtils 'first_index';
use XML::Simple; use XML::Simple;