Whitespace

This commit is contained in:
Gary Gregory 2024-07-06 15:03:54 -04:00
parent 90a5e8ad37
commit 144b86a7cc
1 changed files with 7 additions and 0 deletions

View File

@ -131,24 +131,28 @@ private enum ModifyType {
/** /**
* Number of milliseconds in a standard second. * Number of milliseconds in a standard second.
*
* @since 2.1 * @since 2.1
*/ */
public static final long MILLIS_PER_SECOND = 1_000; public static final long MILLIS_PER_SECOND = 1_000;
/** /**
* Number of milliseconds in a standard minute. * Number of milliseconds in a standard minute.
*
* @since 2.1 * @since 2.1
*/ */
public static final long MILLIS_PER_MINUTE = 60 * MILLIS_PER_SECOND; public static final long MILLIS_PER_MINUTE = 60 * MILLIS_PER_SECOND;
/** /**
* Number of milliseconds in a standard hour. * Number of milliseconds in a standard hour.
*
* @since 2.1 * @since 2.1
*/ */
public static final long MILLIS_PER_HOUR = 60 * MILLIS_PER_MINUTE; public static final long MILLIS_PER_HOUR = 60 * MILLIS_PER_MINUTE;
/** /**
* Number of milliseconds in a standard day. * Number of milliseconds in a standard day.
*
* @since 2.1 * @since 2.1
*/ */
public static final long MILLIS_PER_DAY = 24 * MILLIS_PER_HOUR; public static final long MILLIS_PER_DAY = 24 * MILLIS_PER_HOUR;
@ -173,14 +177,17 @@ private enum ModifyType {
* A week range, starting on Sunday. * A week range, starting on Sunday.
*/ */
public static final int RANGE_WEEK_SUNDAY = 1; public static final int RANGE_WEEK_SUNDAY = 1;
/** /**
* A week range, starting on Monday. * A week range, starting on Monday.
*/ */
public static final int RANGE_WEEK_MONDAY = 2; public static final int RANGE_WEEK_MONDAY = 2;
/** /**
* A week range, starting on the day focused. * A week range, starting on the day focused.
*/ */
public static final int RANGE_WEEK_RELATIVE = 3; public static final int RANGE_WEEK_RELATIVE = 3;
/** /**
* A week range, centered around the day focused. * A week range, centered around the day focused.
*/ */