Bug 197147: removed an invalid/unnecessary comparison of two

PRIntervalTimes in pk11_InDelayPeriod.
This commit is contained in:
wtc%netscape.com 2003-03-13 01:16:00 +00:00
Родитель 5e7ab39a51
Коммит 6c4e221cc7
1 изменённых файлов: 1 добавлений и 2 удалений

Просмотреть файл

@ -2382,8 +2382,7 @@ pk11_InDelayPeriod(PRIntervalTime lastTime, PRIntervalTime delayTime,
PRIntervalTime time;
*retTime = time = PR_IntervalNow();
return (PRBool) (lastTime) && (time > lastTime) &&
((time-lastTime) < delayTime);
return (PRBool) (lastTime) && ((time-lastTime) < delayTime);
}
/*