mirror of
https://github.com/samsonjs/media.git
synced 2026-04-27 15:07:40 +00:00
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:
parent
847cc9b841
commit
da68b9391d
1 changed files with 3 additions and 3 deletions
|
|
@ -81,13 +81,13 @@ public final class C {
|
||||||
@UnstableApi public static final int PERCENTAGE_UNSET = -1;
|
@UnstableApi public static final int PERCENTAGE_UNSET = -1;
|
||||||
|
|
||||||
/** The number of milliseconds in one second. */
|
/** 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. */
|
/** 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. */
|
/** 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. */
|
/** The number of bits per byte. */
|
||||||
@UnstableApi public static final int BITS_PER_BYTE = 8;
|
@UnstableApi public static final int BITS_PER_BYTE = 8;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue