From 10f5a046c489979a9a81b487b1a518aba039345a Mon Sep 17 00:00:00 2001 From: Brian Gianforcaro Date: Tue, 31 Aug 2021 09:49:29 -0700 Subject: [PATCH] AK: Remove dead store from Time:operator+ This is written, but never read again, and is thus useless. --- AK/Time.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/AK/Time.cpp b/AK/Time.cpp index 4d3e8914f6..5d601deefa 100644 --- a/AK/Time.cpp +++ b/AK/Time.cpp @@ -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 new_secs { this_secs };