Skip to content

Commit

Permalink
Add missing close parenthesis
Browse files Browse the repository at this point in the history
  • Loading branch information
jancerman committed Nov 27, 2024
1 parent e021b68 commit c2a1d6b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion net/management-api-v2/cm_api_v2_delete_custom_app.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
ProjectId = "<YOUR_PROJECT_ID>"
});

var identifier = Reference.ById(Guid.Parse("f4b3fc05-e988-4dae-9ac1-a94aba566474");
var identifier = Reference.ById(Guid.Parse("f4b3fc05-e988-4dae-9ac1-a94aba566474"));
//var identifier = Reference.ByCodename("my_custom_app");

var response = await client.DeleteCustomAppAsync(identifier);
Expand Down
2 changes: 1 addition & 1 deletion net/management-api-v2/cm_api_v2_get_custom_app.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
ProjectId = "<YOUR_PROJECT_ID>"
});

var identifier = Reference.ById(Guid.Parse("f4b3fc05-e988-4dae-9ac1-a94aba566474");
var identifier = Reference.ById(Guid.Parse("f4b3fc05-e988-4dae-9ac1-a94aba566474"));
//var identifier = Reference.ByCodename("my_custom_app");

var response = await client.GetCustomAppAsync(identifier);
Expand Down

0 comments on commit c2a1d6b

Please sign in to comment.