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

Commit 81e6635d authored by Song Chun Fan's avatar Song Chun Fan
Browse files

[pm] add missing "break"

It's a no-op in this case but is error-prone especially if the code is extended in the future to have more switch cases.

Change-Id: I67e2d1a2514062aea7bcd8cc666d29eb0bd6b7fd
FLAG: EXEMPT refactor
BUG: 393698598
Test: n/a
parent 4fe70687
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -948,6 +948,7 @@ public class PackageInstallerSession extends IPackageInstallerSession.Stub {
                    break;
                case MSG_ON_NATIVE_LIBS_EXTRACTED:
                    handleOnNativeLibsExtracted();
                    break;
            }

            return true;