Add underscores to numbers for readability.

No-op change just to marginally improve readability and reduce
counting zeroes.

PiperOrigin-RevId: 547844999
This commit is contained in:
huangdarwin 2023-07-13 18:36:31 +01:00 committed by Rohit Singh
parent 847cc9b841
commit da68b9391d

View file

@ -81,13 +81,13 @@ public final class C {
@UnstableApi public static final int PERCENTAGE_UNSET = -1;
/** The number of milliseconds in one second. */
@UnstableApi public static final long MILLIS_PER_SECOND = 1000L;
@UnstableApi public static final long MILLIS_PER_SECOND = 1_000L;
/** The number of microseconds in one second. */
@UnstableApi public static final long MICROS_PER_SECOND = 1000000L;
@UnstableApi public static final long MICROS_PER_SECOND = 1_000_000L;
/** The number of nanoseconds in one second. */
@UnstableApi public static final long NANOS_PER_SECOND = 1000000000L;
@UnstableApi public static final long NANOS_PER_SECOND = 1_000_000_000L;
/** The number of bits per byte. */
@UnstableApi public static final int BITS_PER_BYTE = 8;