Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Re-Implement App Install flow #34141

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Restyled by clang-format
restyled-commits authored and lazarkov committed Aug 7, 2024
commit 8a187983e6885904f7df60891e69db1a0f97b65b
Original file line number Diff line number Diff line change
@@ -82,8 +82,8 @@ CHIP_ERROR ApplicationLauncherManager::HandleGetCatalogList(AttributeValueEncode
return CHIP_ERROR_INCORRECT_STATE;
}

jint size = env->GetArrayLength(jCatalogList);
jint *elements = env->GetIntArrayElements(jCatalogList, 0);
jint size = env->GetArrayLength(jCatalogList);
jint * elements = env->GetIntArrayElements(jCatalogList, 0);
for (int i = 0; i < size; i++)
{
jint jCatalogVendorId = elements[i];