(GregorianDate date)
| 469 | * @see #toMJD(int, int, int) |
| 470 | */ |
| 471 | public static long toMJD(GregorianDate date) { |
| 472 | |
| 473 | return GregorianMath.toMJD(date.getYear(), date.getMonth(), date.getDayOfMonth()); |
| 474 | |
| 475 | } |
| 476 | |
| 477 | /** |
| 478 | * <p>Calculates the modified Julian date. </p> |
no test coverage detected