OSDN Git Service

Add missing break statement.
authorLeonard Mosescu <mosescu@google.com>
Fri, 17 Feb 2017 18:10:45 +0000 (10:10 -0800)
committerLeonard Mosescu <mosescu@google.com>
Fri, 17 Feb 2017 18:10:55 +0000 (10:10 -0800)
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

core/java/android/app/ActivityThread.java

index 2c4cf74..c7fc860 100644 (file)
@@ -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;