Removed an unnecessary boolean test.
This commit is contained in:
parent
08bc27ff0d
commit
1de748fc13
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue