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

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

am aae49432: am 4763989d: am 32d1fec5: Merge "Fixes relative time formatting...

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

* commit 'aae49432':
  Fixes relative time formatting issue for dates in future
parents c77c6898 aae49432
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) {