(
long amount,
CalendarUnit unit
)
| 1711 | } |
| 1712 | |
| 1713 | private String getPastPattern( |
| 1714 | long amount, |
| 1715 | CalendarUnit unit |
| 1716 | ) { |
| 1717 | UnitPatterns patterns = UnitPatterns.of(this.locale); |
| 1718 | PluralCategory category = this.getCategory(amount); |
| 1719 | return patterns.getPatternInPast(category, this.shortStyle, unit); |
| 1720 | } |
| 1721 | |
| 1722 | private String getFuturePattern( |
| 1723 | long amount, |
no test coverage detected