Merge "Make getAvailability() always return true"

This commit is contained in:
Sungsoo Lim
2014-06-19 23:33:17 +00:00
committed by Android (Google) Code Review

View File

@@ -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