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

View File

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