Skip to content

Commit ae0924d

Browse files
author
exoego
committed
Reformat
1 parent 598fb27 commit ae0924d

File tree

3 files changed

+11
-6
lines changed

3 files changed

+11
-6
lines changed

core/shared/src/main/scala/org/threeten/bp/chrono/HijrahDate.scala

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,8 @@ object HijrahDate {
7979
/** 0-based, for number of day-of-year in the beginning of month in normal
8080
* year.
8181
*/
82-
private lazy val NUM_DAYS: Array[Int] = Array(0, 30, 59, 89, 118, 148, 177, 207, 236, 266, 295, 325)
82+
private lazy val NUM_DAYS: Array[Int] =
83+
Array(0, 30, 59, 89, 118, 148, 177, 207, 236, 266, 295, 325)
8384

8485
/** 0-based, for number of day-of-year in the beginning of month in leap year. */
8586
private lazy val LEAP_NUM_DAYS: Array[Int] =
@@ -89,7 +90,8 @@ object HijrahDate {
8990
private lazy val MONTH_LENGTH: Array[Int] = Array(30, 29, 30, 29, 30, 29, 30, 29, 30, 29, 30, 29)
9091

9192
/** 0-based, for day-of-month in leap year. */
92-
private lazy val LEAP_MONTH_LENGTH: Array[Int] = Array(30, 29, 30, 29, 30, 29, 30, 29, 30, 29, 30, 30)
93+
private lazy val LEAP_MONTH_LENGTH: Array[Int] =
94+
Array(30, 29, 30, 29, 30, 29, 30, 29, 30, 29, 30, 30)
9395

9496
/** <pre>
9597
* Greatest Least

core/shared/src/main/scala/org/threeten/bp/temporal/ChronoField.scala

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,8 @@ object ChronoField {
137137
* When this field is used for setting a value, it should behave in the same way as
138138
* setting {@link #NANO_OF_SECOND} with the value multiplied by 1,000,000.
139139
*/
140-
lazy val MILLI_OF_SECOND = new ChronoField("MilliOfSecond", 4, MILLIS, SECONDS, ValueRange.of(0, 999))
140+
lazy val MILLI_OF_SECOND =
141+
new ChronoField("MilliOfSecond", 4, MILLIS, SECONDS, ValueRange.of(0, 999))
141142

142143
/** The milli-of-day.
143144
*
@@ -167,7 +168,8 @@ object ChronoField {
167168
* This counts the second within the day, from 0 to (24 * 60 * 60) - 1.
168169
* This field has the same meaning for all calendar systems.
169170
*/
170-
lazy val SECOND_OF_DAY = new ChronoField("SecondOfDay", 7, SECONDS, DAYS, ValueRange.of(0, 86400L - 1))
171+
lazy val SECOND_OF_DAY =
172+
new ChronoField("SecondOfDay", 7, SECONDS, DAYS, ValueRange.of(0, 86400L - 1))
171173

172174
/** The minute-of-hour.
173175
*
@@ -215,7 +217,8 @@ object ChronoField {
215217
* This is the hour that would be observed on a 24-hour analog wall clock.
216218
* This field has the same meaning for all calendar systems.
217219
*/
218-
lazy val CLOCK_HOUR_OF_DAY = new ChronoField("ClockHourOfDay", 13, HOURS, DAYS, ValueRange.of(1, 24))
220+
lazy val CLOCK_HOUR_OF_DAY =
221+
new ChronoField("ClockHourOfDay", 13, HOURS, DAYS, ValueRange.of(1, 24))
219222

220223
/** The am-pm-of-day.
221224
*

core/shared/src/main/scala/org/threeten/bp/temporal/IsoFields.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ object IsoFields {
266266
}
267267
}
268268

269-
lazy val QUARTER_OF_YEAR: Field = new Field("QUARTER_OF_YEAR", 1) {
269+
lazy val QUARTER_OF_YEAR: Field = new Field("QUARTER_OF_YEAR", 1) {
270270
override def toString: String = "QuarterOfYear"
271271
def getBaseUnit: TemporalUnit = QUARTER_YEARS
272272
def getRangeUnit: TemporalUnit = YEARS

0 commit comments

Comments
 (0)