Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4763989d authored by Dianne Hackborn's avatar Dianne Hackborn Committed by Android Git Automerger
Browse files

am 32d1fec5: Merge "Fixes relative time formatting issue for dates in future"

* commit '32d1fec5':
  Fixes relative time formatting issue for dates in future
parents 26ad1e78 32d1fec5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1618,7 +1618,7 @@ public class DateUtils

        String result;
        long now = System.currentTimeMillis();
        long span = now - millis;
        long span = Math.abs(now - millis);

        synchronized (DateUtils.class) {
            if (sNowTime == null) {