(
long amount,
CalendarUnit unit
)
| 1720 | } |
| 1721 | |
| 1722 | private String getFuturePattern( |
| 1723 | long amount, |
| 1724 | CalendarUnit unit |
| 1725 | ) { |
| 1726 | UnitPatterns patterns = UnitPatterns.of(this.locale); |
| 1727 | PluralCategory category = this.getCategory(amount); |
| 1728 | return patterns.getPatternInFuture(category, this.shortStyle, unit); |
| 1729 | } |
| 1730 | |
| 1731 | private String getPastPattern( |
| 1732 | long amount, |
no test coverage detected