Merge "Teach bmgr that "android" is a valid package name" into lmp-mr1-dev

This commit is contained in:
Christopher Tate
2014-11-15 00:48:14 +00:00
committed by Android (Google) Code Review

View File

@@ -354,7 +354,7 @@ public final class Bmgr {
return;
}
if (arg.indexOf('.') >= 0) {
if (arg.indexOf('.') >= 0 || arg.equals("android")) {
// it's a package name
doRestorePackage(arg);
} else {