Merge "fix hex parsing of bmgr"

This commit is contained in:
Christian Sonntag
2010-03-04 15:11:32 -08:00
committed by Android (Google) Code Review

View File

@@ -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();