diff options
| -rw-r--r-- | services/core/java/com/android/server/tv/TvInputManagerService.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/services/core/java/com/android/server/tv/TvInputManagerService.java b/services/core/java/com/android/server/tv/TvInputManagerService.java index cbbcc58854b0..99b5b03d5256 100644 --- a/services/core/java/com/android/server/tv/TvInputManagerService.java +++ b/services/core/java/com/android/server/tv/TvInputManagerService.java @@ -631,7 +631,9 @@ public final class TvInputManagerService extends SystemService { } finally { Binder.restoreCallingIdentity(identity); } - return false; + // STOPSHIP: Redesign the API around the availability change. For now, the service + // will be always available. + return true; } @Override |