Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e6439964 authored by Kevin Chyn's avatar Kevin Chyn
Browse files

Add missing break statements in FingerprintManager

Fixes: 38268065

Test: manual

Change-Id: I64ac92b2c5682bcaa494f43ff5defdf9915c5a65
parent a5b396b5
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -871,9 +871,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;
            }
        }