summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author junyulai <junyulai@google.com> 2020-05-29 11:24:58 +0800
committer junyulai <junyulai@google.com> 2020-06-01 10:58:52 +0800
commit66e735eb35e7b4a4a8072bfee627703dfd3510bb (patch)
tree3bc231a41101a9bce830654a9fa01e63ee83fa8b
parentb8fd5923a4f3f91ef6731320a61a219494e977b0 (diff)
Address ag/11032295 leftover comments
Test: TH Bug: 148905838 Change-Id: I2af9d4520dd2d22470fe0f975ea33b3e35b906ea
-rw-r--r--services/core/java/com/android/server/stats/pull/StatsPullAtomService.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/services/core/java/com/android/server/stats/pull/StatsPullAtomService.java b/services/core/java/com/android/server/stats/pull/StatsPullAtomService.java
index e3922c4c8244..13433a695b7c 100644
--- a/services/core/java/com/android/server/stats/pull/StatsPullAtomService.java
+++ b/services/core/java/com/android/server/stats/pull/StatsPullAtomService.java
@@ -316,7 +316,7 @@ public class StatsPullAtomService extends SystemService {
// Listener for monitoring subscriptions changed event.
private StatsSubscriptionsListener mStatsSubscriptionsListener;
- // List that store SubInfo of subscriptions that ever appeared since boot.
+ // List that stores SubInfo of subscriptions that ever appeared since boot.
private final CopyOnWriteArrayList<SubInfo> mHistoricalSubs = new CopyOnWriteArrayList<>();
public StatsPullAtomService(Context context) {
@@ -672,7 +672,7 @@ public class StatsPullAtomService extends SystemService {
collectNetworkStatsSnapshotForAtom(FrameworkStatsLog.DATA_USAGE_BYTES_TRANSFER));
// Listen to subscription changes to record historical subscriptions that activated before
- // pulling, this is used by {@link #pullMobileBytesTransfer}.
+ // pulling, this is used by {@code DATA_USAGE_BYTES_TRANSFER}.
mSubscriptionManager.addOnSubscriptionsChangedListener(
BackgroundThread.getExecutor(), mStatsSubscriptionsListener);