Searched refs:durationSinceLastInteraction (Results 1 – 1 of 1) sorted by relevance
1296 Duration durationSinceLastInteraction = Duration.ofMillis(now - lastInteraction); in getLastInteractionString() local1297 if (durationSinceLastInteraction.toDays() <= ONE_DAY) { in getLastInteractionString()1299 } else if (durationSinceLastInteraction.toDays() < DAYS_IN_A_WEEK) { in getLastInteractionString()1301 durationSinceLastInteraction.toDays()); in getLastInteractionString()1302 } else if (durationSinceLastInteraction.toDays() == DAYS_IN_A_WEEK) { in getLastInteractionString()1304 } else if (durationSinceLastInteraction.toDays() < DAYS_IN_A_WEEK * 2) { in getLastInteractionString()1306 } else if (durationSinceLastInteraction.toDays() == DAYS_IN_A_WEEK * 2) { in getLastInteractionString()