Uncomment out getHotwordPackageNameInternal impl

This was mistakenly commented out and causes the API to not function.

Fixes FOR-205.

Change-Id: I3c76d9c3665e35e2d13bed00cba1e742e4c0fb07
This commit is contained in:
Matt Garnes 2016-02-23 18:22:20 -08:00 committed by Gerrit Code Review
parent 61afdc1fd7
commit c2efaa7794
1 changed files with 0 additions and 2 deletions

View File

@ -264,13 +264,11 @@ public class PartnerInterfaceService extends SystemService {
public String getHotwordPackageNameInternal() {
String packageName = null;
/*
try {
packageName = mAudioService.getCurrentHotwordInputPackageName();
} catch (RemoteException e) {
Log.e(TAG, "getHotwordPackageName() failed.");
}
*/
return packageName;
}
}