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

Commit 32d1fec5 authored by Dianne Hackborn's avatar Dianne Hackborn Committed by android code review
Browse files

Merge "Fixes relative time formatting issue for dates in future"

parents 03d16e12 ca336377
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) {