aboutsummaryrefslogtreecommitdiff
path: root/src/com/android/tv/analytics/SendConfigInfoRunnable.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/android/tv/analytics/SendConfigInfoRunnable.java')
-rw-r--r--src/com/android/tv/analytics/SendConfigInfoRunnable.java10
1 files changed, 3 insertions, 7 deletions
diff --git a/src/com/android/tv/analytics/SendConfigInfoRunnable.java b/src/com/android/tv/analytics/SendConfigInfoRunnable.java
index 41392a6d..d4674086 100644
--- a/src/com/android/tv/analytics/SendConfigInfoRunnable.java
+++ b/src/com/android/tv/analytics/SendConfigInfoRunnable.java
@@ -17,14 +17,10 @@
package com.android.tv.analytics;
import android.media.tv.TvInputInfo;
-
import com.android.tv.util.TvInputManagerHelper;
-
import java.util.List;
-/**
- * Sends ConfigurationInfo once a day.
- */
+/** Sends ConfigurationInfo once a day. */
public class SendConfigInfoRunnable implements Runnable {
private final Tracker mTracker;
private final TvInputManagerHelper mTvInputManagerHelper;
@@ -46,8 +42,8 @@ public class SendConfigInfoRunnable implements Runnable {
nonSystemInputCount++;
}
}
- ConfigurationInfo configurationInfo = new ConfigurationInfo(systemInputCount,
- nonSystemInputCount);
+ ConfigurationInfo configurationInfo =
+ new ConfigurationInfo(systemInputCount, nonSystemInputCount);
mTracker.sendConfigurationInfo(configurationInfo);
}
}