Browse Source

Corrected styling

Yedidya Kennard 8 years ago
parent
commit
3693807ac5

+ 2
- 1
android/app/src/main/java/com/reactnativenavigation/utils/BridgeUtils.java View File

72
     @SuppressWarnings("unchecked")
72
     @SuppressWarnings("unchecked")
73
     private static Bundle[] toBundleArray(ArrayList<HashMap> arrayList) {
73
     private static Bundle[] toBundleArray(ArrayList<HashMap> arrayList) {
74
         Bundle[] ret = new Bundle[arrayList.size()];
74
         Bundle[] ret = new Bundle[arrayList.size()];
75
-        for (int i=0; i < ret.length; i++)
75
+        for (int i=0; i < ret.length; i++) {
76
             ret[i] = addMapToBundle(arrayList.get(i), new Bundle());
76
             ret[i] = addMapToBundle(arrayList.get(i), new Bundle());
77
+        }
77
         return ret;
78
         return ret;
78
     }
79
     }
79
 
80