Rename snapshotProfile to createProfileSnapshot for consistency

Test: build
Bug: 30934496
Change-Id: I602262d22509b279383ff2a71e38c8bae059498a
This commit is contained in:
Calin Juravle
2017-12-05 12:33:32 -08:00
parent 8bb6da69ee
commit 388cd5fffe

View File

@@ -500,7 +500,7 @@ public class Installer extends SystemService {
throws InstallerException {
if (!checkBeforeRemote()) return false;
try {
return mInstalld.snapshotProfile(appId, packageName, codePath);
return mInstalld.createProfileSnapshot(appId, packageName, codePath);
} catch (Exception e) {
throw InstallerException.from(e);
}