{@inheritDoc}
()
| 347 | * {@inheritDoc} |
| 348 | */ |
| 349 | @Override |
| 350 | public Integer getTo() { |
| 351 | if (from <= to) { |
| 352 | return (inclusiveRight == null || inclusiveRight) ? to : to - 1; |
| 353 | } |
| 354 | return (inclusiveLeft == null || inclusiveLeft) ? from : from - 1; |
| 355 | } |
| 356 | |
| 357 | /** |
| 358 | * Returns the same as <code>getInclusiveRight</code>, kept here for backwards compatibility. |
no outgoing calls
no test coverage detected