Removed an unnecessary boolean test.

This commit is contained in:
John Wiegley 2009-02-07 18:41:52 -04:00
parent 08bc27ff0d
commit 1de748fc13

View file

@ -309,7 +309,7 @@ void collapse_xacts::operator()(xact_t& xact)
// If we've reached a new entry, report on the subtotal
// accumulated thus far.
if (last_entry && last_entry != xact.entry && count > 0)
if (last_entry != xact.entry && count > 0)
report_subtotal();
xact.add_to_value(subtotal);