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

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

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

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