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

Commit f3e7f5dc authored by Christian Sonntag's avatar Christian Sonntag Committed by Android (Google) Code Review
Browse files

Merge "fix hex parsing of bmgr"

parents f8790036 485c3a16
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -311,7 +311,7 @@ public final class Bmgr {
            doRestorePackage(arg);
        } else {
            try {
                long token = Long.parseLong(nextArg(), 16);
                long token = Long.parseLong(arg, 16);
                doRestoreAll(token);
            } catch (NumberFormatException e) {
                showUsage();