Skip to content

Commit

Permalink
Format long constant for readability
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Sep 4, 2024
1 parent 45f2cea commit 9903591
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/apache/commons/lang3/time/StopWatch.java
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ boolean isSuspended() {
abstract boolean isSuspended();
}

private static final long NANO_2_MILLIS = 1000000L;
private static final long NANO_2_MILLIS = 1_000_000L;

/**
* Creates a StopWatch.
Expand Down

0 comments on commit 9903591

Please sign in to comment.