summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2017-12-16 11:10:09 +0100
committerDaniel Friesel <derf@finalrewind.org>2017-12-16 11:10:09 +0100
commit32b564c9f1c165f5e94d808a0a12ce6728d005b6 (patch)
treeceeb946c6651a5f30b9d0a6b493b68f6658050b0
parent274be675d3987b9b41fd4dadb589957e52b084b8 (diff)
Remove accidentally commited debug output
-rw-r--r--lib/Travel/Status/DE/IRIS.pm2
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/Travel/Status/DE/IRIS.pm b/lib/Travel/Status/DE/IRIS.pm
index 187289d..2f375eb 100644
--- a/lib/Travel/Status/DE/IRIS.pm
+++ b/lib/Travel/Status/DE/IRIS.pm
@@ -90,12 +90,10 @@ sub new {
my $lookahead_steps = int( $self->{lookahead} / 60 );
if ( ( 60 - $self->{datetime}->minute ) < ( $self->{lookahead} % 60 ) ) {
- say "lookahead: ${lookahead_steps}++";
$lookahead_steps++;
}
my $lookbehind_steps = int( $self->{lookbehind} / 60 );
if ( $self->{datetime}->minute < ( $self->{lookbehind} % 60 ) ) {
- say "lookbehind: ${lookbehind_steps}++";
$lookbehind_steps++;
}