Skip to content

Commit

Permalink
chore: remove unncessary codes
Browse files Browse the repository at this point in the history
  • Loading branch information
damonto committed Aug 3, 2024
1 parent 74a9754 commit f5670b3
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
5 changes: 0 additions & 5 deletions euicc/es9p_ex.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ enum es9p_ex_profile_class
struct es9p_ex_profile_metadata
{
char iccid[(10 * 2) + 1];
char isdpAid[(16 * 2) + 1];
char *serviceProviderName;
char *profileName;
enum es9p_ex_profile_class profileClass;
Expand All @@ -37,10 +36,6 @@ struct es9p_ex_profile_metadata
char *gid1;
char *gid2;
} profileOwner;
struct
{
char *dpOid;
} dpProprietaryData;
char **profilePolicyRules;
};

Expand Down
1 change: 0 additions & 1 deletion src/applet/profile/download.c
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,6 @@ static int applet_main(int argc, char **argv)

cJSON *jprofilemeta = cJSON_CreateObject();
cJSON_AddStringOrNullToObject(jprofilemeta, "iccid", profile_metadata.iccid);
cJSON_AddStringOrNullToObject(jprofilemeta, "isdpAid", profile_metadata.isdpAid);
cJSON_AddStringOrNullToObject(jprofilemeta, "serviceProviderName", profile_metadata.serviceProviderName);
cJSON_AddStringOrNullToObject(jprofilemeta, "profileName", profile_metadata.profileName);
cJSON_AddStringOrNullToObject(jprofilemeta, "profileClass", euicc_profileclass2str(profile_metadata.profileClass));
Expand Down

0 comments on commit f5670b3

Please sign in to comment.