diff options
| author | Leonard Mosescu <mosescu@google.com> | 2017-02-17 10:10:45 -0800 |
|---|---|---|
| committer | Leonard Mosescu <mosescu@google.com> | 2017-02-17 10:10:55 -0800 |
| commit | 456d5fc159c2ed5341ec01425cb770b4fcf80f97 (patch) | |
| tree | 41b2e19cf0915927f4b8bf81110af4b06a2f1822 /core/java/android | |
| parent | 1a69570fe8f2ed2ee541d13716f359b1116105e0 (diff) | |
Add missing break statement.
It was caught in the code review after the merge (thanks Narayan!).
This is already fixed and tested in the internal branch (see Merged-In)
Test: manual, CTS in internal
Change-Id: I9f6f72995e9ab633564b6bc22846fbe99eb65105
Merged-In: If14126e645b2d0a1307404e2f50088b3994abce2
Diffstat (limited to 'core/java/android')
| -rw-r--r-- | core/java/android/app/ActivityThread.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/java/android/app/ActivityThread.java b/core/java/android/app/ActivityThread.java index 2c4cf7449c34..c7fc860a055c 100644 --- a/core/java/android/app/ActivityThread.java +++ b/core/java/android/app/ActivityThread.java @@ -1724,6 +1724,7 @@ public final class ActivityThread { case LOCAL_VOICE_INTERACTION_STARTED: handleLocalVoiceInteractionStarted((IBinder) ((SomeArgs) msg.obj).arg1, (IVoiceInteractor) ((SomeArgs) msg.obj).arg2); + break; case ATTACH_AGENT: handleAttachAgent((String) msg.obj); break; |
