You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
créer une méthode utilitaire dans fr.insee.rmes.utils.JSONUtils : public static Stream<JSONObject> stream(JSONArray jsonArray) qui retourne la stream constituée par les éléments du JSONArray en tant que JSONObject
partout où une boucle for telle que for(var i = 0; i < items.length(); i++){ JSONObject item = items.getJSONObject(i); ... , remplacer par un appel à JSONUtils.stream(items)...
Bien écrire le test unitaire de la méthode JSONUtils#stream
The text was updated successfully, but these errors were encountered:
Pour toutes les boucles for sur les JSONObject d'un JSONArray, comme dans CodeListServiceImpl#getCodesForCodeList, remplacer la boucle for par une Stream :
public static Stream<JSONObject> stream(JSONArray jsonArray)
qui retourne la stream constituée par les éléments du JSONArray en tant que JSONObjectfor(var i = 0; i < items.length(); i++){ JSONObject item = items.getJSONObject(i); ...
, remplacer par un appel àJSONUtils.stream(items)...
JSONUtils#stream
The text was updated successfully, but these errors were encountered: