diff options
| author | 2022-03-14 15:24:33 -0700 | |
|---|---|---|
| committer | 2022-03-14 15:26:22 -0700 | |
| commit | a3d930691e7cead8447ed051b22aaa5aa9ea43f9 (patch) | |
| tree | bb0c64972d2559deae8a89b52b83801cb205ff53 | |
| parent | be79640cb01abac81039a79b0b4e26ddc7316c67 (diff) | |
Fix units is getActiveRadioDuration documentation
Bug: 207697945
Test: n/a
Change-Id: Ie6d2846fe37962e6ce87c0bf35c5ee463b110901
| -rw-r--r-- | core/java/android/os/BatteryStats.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/java/android/os/BatteryStats.java b/core/java/android/os/BatteryStats.java index 08f1fdd07760..89038a13a4fc 100644 --- a/core/java/android/os/BatteryStats.java +++ b/core/java/android/os/BatteryStats.java @@ -2681,7 +2681,7 @@ public abstract class BatteryStats implements Parcelable { public static final String[] RADIO_ACCESS_TECHNOLOGY_NAMES = {"Other", "LTE", "NR"}; /** - * Returns the time in microseconds that the mobile radio has been active on a + * Returns the time in milliseconds that the mobile radio has been active on a * given Radio Access Technology (RAT), at a given frequency (NR RAT only), for a given * transmission power level. * @@ -2701,7 +2701,7 @@ public abstract class BatteryStats implements Parcelable { long elapsedRealtimeMs); /** - * Returns the time in microseconds that the mobile radio has been actively transmitting data on + * Returns the time in milliseconds that the mobile radio has been actively transmitting data on * a given Radio Access Technology (RAT), at a given frequency (NR RAT only), for a given * transmission power level. * @@ -2722,7 +2722,7 @@ public abstract class BatteryStats implements Parcelable { long elapsedRealtimeMs); /** - * Returns the time in microseconds that the mobile radio has been actively receiving data on a + * Returns the time in milliseconds that the mobile radio has been actively receiving data on a * given Radio Access Technology (RAT), at a given frequency (NR RAT only), for a given * transmission power level. * |