diff options
| author | 2013-09-07 01:11:26 +0000 | |
|---|---|---|
| committer | 2013-09-07 01:11:26 +0000 | |
| commit | 1cf2b91fe533d9e50bce6e5551ae26bccdb4a965 (patch) | |
| tree | e0deb72965e667f90e6b41c1e13a4bb04643e049 | |
| parent | dac56db680251dd9bd3913b6152d33457366c722 (diff) | |
| parent | 05203c1e4bd86cccf0959b510663951a4d565e93 (diff) | |
Merge "Fixing build break" into klp-dev
| -rw-r--r-- | core/java/android/speech/hotword/HotwordRecognitionService.java | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/core/java/android/speech/hotword/HotwordRecognitionService.java b/core/java/android/speech/hotword/HotwordRecognitionService.java index c70bdab640f1..7a26e0ce87ee 100644 --- a/core/java/android/speech/hotword/HotwordRecognitionService.java +++ b/core/java/android/speech/hotword/HotwordRecognitionService.java @@ -227,7 +227,7 @@ public abstract class HotwordRecognitionService extends Service { /** * Called on an event of interest to the client. * - * @param eventType the event type. Event types are defined in {@link HotwordRecognizer}. + * @param eventType the event type. * @param eventBundle a Bundle containing the hotword event(s). */ public void onHotwordEvent(int eventType, Bundle eventBundle) throws RemoteException { @@ -237,7 +237,7 @@ public abstract class HotwordRecognitionService extends Service { /** * Called back when hotword is detected. * - * @param intent for the activity to launch, post hotword detection. + * @param activityIntent for the activity to launch, post hotword detection. */ public void onHotwordRecognized(Intent activityIntent) throws RemoteException { mListener.onHotwordRecognized(activityIntent); @@ -247,7 +247,6 @@ public abstract class HotwordRecognitionService extends Service { * Called when the HotwordRecognitionService encounters an error. * * @param errorCode the error code describing the error that was encountered. - * Error codes are defined in {@link HotwordRecognizer}. */ public void onError(int errorCode) throws RemoteException { mListener.onHotwordError(errorCode); |