Skip to content

Commit

Permalink
rename method
Browse files Browse the repository at this point in the history
  • Loading branch information
shubham1g5 committed Sep 18, 2023
1 parent 6364337 commit 58c52ca
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public static boolean isUpdateReadyToInstall() {
* Creates a new application record in db
* @return newly created CommCare App
*/
private static CommCareApp getNewCommCareApp() {
private static CommCareApp createNewCommCareApp() {
ApplicationRecord newRecord =
new ApplicationRecord(PropertyUtils.genUUID().replace("-", ""),
ApplicationRecord.STATUS_UNINITIALIZED);
Expand All @@ -67,7 +67,7 @@ private static CommCareApp getNewCommCareApp() {

public static CommCareApp startAppInstallAsync(boolean shouldSleep, int taskId, CommCareTaskConnector connector,
String installRef) {
CommCareApp ccApp = getNewCommCareApp();
CommCareApp ccApp = createNewCommCareApp();
ResourceEngineTask<ResourceEngineListener> task =
new ResourceEngineTask<>(ccApp,
taskId, shouldSleep, false) {
Expand Down

0 comments on commit 58c52ca

Please sign in to comment.