(Number stepSize)
| 543 | } |
| 544 | |
| 545 | private boolean isIntegral(Number stepSize) { |
| 546 | BigDecimal tempStepSize = NumberMath.toBigDecimal(stepSize); |
| 547 | return tempStepSize.equals(new BigDecimal(tempStepSize.toBigInteger())); |
| 548 | } |
| 549 | |
| 550 | /** |
| 551 | * {@inheritDoc} |
no test coverage detected