AK: Remove dead store from Time:operator+

This is written, but never read again, and is thus useless.
This commit is contained in:
Brian Gianforcaro 2021-08-31 09:49:29 -07:00 committed by Andreas Kling
parent 271d6f494f
commit 10f5a046c4

View file

@ -204,7 +204,6 @@ Time Time::operator+(const Time& other) const
/* If *both* are INT64_MAX, then adding them will overflow in any case. */
return Time::max();
}
extra_secs = 0;
}
Checked<i64> new_secs { this_secs };