@@ -285,8 +285,8 @@ void StorageReferenceInternal::FutureCallback(JNIEnv* env, jobject result,
285285
286286 std::vector<StorageReference> prefixes;
287287 if (prefixes_list) {
288- jint size =
289- env-> CallIntMethod ( prefixes_list, util::list::GetMethodId (util::list::kSize ));
288+ jint size = env-> CallIntMethod (
289+ prefixes_list, util::list::GetMethodId (util::list::kSize ));
290290 for (jint i = 0 ; i < size; ++i) {
291291 jobject prefix_obj = env->CallObjectMethod (
292292 prefixes_list, util::list::GetMethodId (util::list::kGet ), i);
@@ -299,11 +299,11 @@ void StorageReferenceInternal::FutureCallback(JNIEnv* env, jobject result,
299299
300300 std::vector<StorageReference> items;
301301 if (items_list) {
302- jint size =
303- env-> CallIntMethod ( items_list, util::list::GetMethodId (util::list::kSize ));
302+ jint size = env-> CallIntMethod (
303+ items_list, util::list::GetMethodId (util::list::kSize ));
304304 for (jint i = 0 ; i < size; ++i) {
305- jobject item_obj =
306- env-> CallObjectMethod ( items_list, util::list::GetMethodId (util::list::kGet ), i);
305+ jobject item_obj = env-> CallObjectMethod (
306+ items_list, util::list::GetMethodId (util::list::kGet ), i);
307307 items.push_back (StorageReference (
308308 new StorageReferenceInternal (data->storage , item_obj)));
309309 env->DeleteLocalRef (item_obj);
0 commit comments