aboutsummaryrefslogtreecommitdiff
path: root/src/com/android
diff options
context:
space:
mode:
authorChristofer Ã…kersten <akersten@google.com>2020-07-30 06:32:20 -0700
committerChristofer Ã…kersten <akersten@google.com>2020-07-30 06:32:20 -0700
commit051a10d0ca58d013f8d456f94c21317eb78ec12c (patch)
tree0addf00003d41b4667eb16ac0fc78b3898dfe203 /src/com/android
parent4db5fd75dda5ee2b624de2bad482250c35de229d (diff)
downloadTV-051a10d0ca58d013f8d456f94c21317eb78ec12c.tar.gz
Update language to comply with Android's inclusive language guidance
See https://source.android.com/setup/contribute/respectful-code for reference BUG=161896447 Test: Compile Change-Id: I2b57245507b02f3b844a3c444eedb82b3bfe0587
Diffstat (limited to 'src/com/android')
-rw-r--r--src/com/android/tv/guide/ProgramManager.java7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/com/android/tv/guide/ProgramManager.java b/src/com/android/tv/guide/ProgramManager.java
index 516a4d9c..9dfc05c0 100644
--- a/src/com/android/tv/guide/ProgramManager.java
+++ b/src/com/android/tv/guide/ProgramManager.java
@@ -417,8 +417,9 @@ public class ProgramManager {
/**
* Returns an entry as {@link ProgramImpl} for a given {@code channelId} and {@code index} of
- * entries within the currently managed time range. Returned {@link ProgramImpl} can be a dummy
- * one (e.g., whose channelId is INVALID_ID), when it corresponds to a gap between programs.
+ * entries within the currently managed time range. Returned {@link ProgramImpl} can be a
+ * placeholder (e.g., whose channelId is INVALID_ID), when it corresponds to a gap between
+ * programs.
*/
TableEntry getTableEntry(long channelId, int index) {
mProgramDataManager.prefetchChannel(channelId, index);
@@ -613,7 +614,7 @@ public class ProgramManager {
List<Program> programs = mProgramDataManager.getPrograms(channelId, mStartUtcMillis);
for (Program program : programs) {
if (program.getChannelId() == INVALID_ID) {
- // Dummy program.
+ // Placeholder program.
continue;
}
long programStartTime = Math.max(program.getStartTimeUtcMillis(), mStartUtcMillis);