Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.3.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-6.8.3-bin.zip
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
*/
public final class TimePeriod {

private final TimeUnit timeUnit;
private final long periodLength;
public final TimeUnit timeUnit;
public final long periodLength;

/**
* Create a new time period with the given unit of time and period length.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ public enum TimeUnit {
MICROSECOND(ChronoUnit.MICROS, 1L),
NANOSECOND(ChronoUnit.NANOS, 1L);

private final TemporalUnit temporalUnit;
private final long unitLength;
public final TemporalUnit temporalUnit;
public final long unitLength;

TimeUnit(final TemporalUnit timeUnit, final long unitLength) {
this.temporalUnit = timeUnit;
Expand Down