Skip to content

Commit

Permalink
Fix default values
Browse files Browse the repository at this point in the history
  • Loading branch information
Dadoum committed Jun 17, 2023
1 parent f4a3f76 commit b131c62
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions lib/provision/adi.d
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public class ADI {
private AndroidLibrary storeServicesCore;
private Logger logger;

private string __provisioningPath;
private string __provisioningPath = null;
public string provisioningPath() {
return __provisioningPath;
}
Expand All @@ -59,7 +59,7 @@ public class ADI {
pADISetProvisioningPath(path.toStringz).unwrapADIError();
}

private string __identifier;
private string __identifier = null;
public string identifier() {
return __identifier;
}
Expand Down Expand Up @@ -107,8 +107,6 @@ public class ADI {
logger.debug_("Initialization…");

// We are setting those to be sure to have the same value in the class (used in getter) and the real one in ADI.
provisioningPath = "/";
identifier = "0000000000000000";
logger.debug_("Initialization complete !");
}

Expand Down

0 comments on commit b131c62

Please sign in to comment.