Skip to content

Commit

Permalink
Update android const correctness/overrides after #24355 (#24448)
Browse files Browse the repository at this point in the history
  • Loading branch information
andy31415 authored and pull[bot] committed Jul 11, 2023
1 parent 2ee88d6 commit 1465630
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/tv-app/android/java/TVApp-JNI.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ MyPincodeService gMyPincodeService;
class MyPostCommissioningListener : public PostCommissioningListener
{
void CommissioningCompleted(uint16_t vendorId, uint16_t productId, NodeId nodeId, Messaging::ExchangeManager & exchangeMgr,
SessionHandle & sessionHandle) override
const SessionHandle & sessionHandle) override
{
// read current binding list
chip::Controller::BindingCluster cluster(exchangeMgr, sessionHandle, kTargetBindingClusterEndpointId);
Expand Down Expand Up @@ -296,7 +296,7 @@ class MyPostCommissioningListener : public PostCommissioningListener
}

void cacheContext(uint16_t vendorId, uint16_t productId, NodeId nodeId, Messaging::ExchangeManager & exchangeMgr,
SessionHandle & sessionHandle)
const SessionHandle & sessionHandle)
{
mVendorId = vendorId;
mProductId = productId;
Expand Down

0 comments on commit 1465630

Please sign in to comment.