Skip to content

Commit

Permalink
using getHandle instead of accessing the member mHandle directly
Browse files Browse the repository at this point in the history
  • Loading branch information
remibettan committed Jul 4, 2021
1 parent c61fa8a commit 9c9d0b6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public void openSensor(List<StreamProfile> sp_list) {
int size = sp_list.size();
long[] profiles_array = new long[size];
for (int i = 0; i < size; ++i) {
profiles_array[i] = sp_list.get(i).mHandle;
profiles_array[i] = sp_list.get(i).getHandle();
}
nOpenMultiple(mHandle, profiles_array, sp_list.size());
}
Expand Down

0 comments on commit 9c9d0b6

Please sign in to comment.