From b77d690a6fd95e369764543974d4db3306e59614 Mon Sep 17 00:00:00 2001 From: "Andreas J. Koenig" Date: Sun, 26 Oct 2008 21:41:26 +0100 Subject: [PATCH] remove bigfloat comments, I have reviewed the places --- lib/File/Rsync/Mirror/Recentfile.pm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/File/Rsync/Mirror/Recentfile.pm b/lib/File/Rsync/Mirror/Recentfile.pm index 55f043a..2c03af7 100644 --- a/lib/File/Rsync/Mirror/Recentfile.pm +++ b/lib/File/Rsync/Mirror/Recentfile.pm @@ -1802,13 +1802,12 @@ sub update { $recent ||= []; my $oldest_allowed = 0; if (my $merged = $self->merged) { - # XXX _bigfloat! $oldest_allowed = min($epoch - $secs, $merged->{epoch}); } else { # as long as we are not merged at all, no limits! } TRUNCATE: while (@$recent) { - if ($recent->[-1]{epoch} < $oldest_allowed) { # XXX _bigfloatlt! + if ($recent->[-1]{epoch} < $oldest_allowed) { pop @$recent; } else { last TRUNCATE; -- 2.11.4.GIT