Merge "Add missing break statements in FingerprintManager" into oc-dev

This commit is contained in:
TreeHugger Robot
2017-05-13 00:27:08 +00:00
committed by Android (Google) Code Review

View File

@@ -880,9 +880,11 @@ public class FingerprintManager {
case MSG_REMOVED:
sendRemovedResult((Long) msg.obj /* deviceId */, msg.arg1 /* fingerId */,
msg.arg2 /* groupId */);
break;
case MSG_ENUMERATED:
sendEnumeratedResult((Long) msg.obj /* deviceId */, msg.arg1 /* fingerId */,
msg.arg2 /* groupId */);
break;
}
}