(int nanoFraction)
| 2038 | } |
| 2039 | |
| 2040 | private static void checkFraction(int nanoFraction) { |
| 2041 | |
| 2042 | if ((nanoFraction >= MRD) || (nanoFraction < 0)) { |
| 2043 | throw new IllegalArgumentException( |
| 2044 | "Nanosecond out of range: " + nanoFraction); |
| 2045 | } |
| 2046 | |
| 2047 | } |
| 2048 | |
| 2049 | private Moment transformForPrint(TimeScale scale) { |
| 2050 |
no outgoing calls
no test coverage detected