master #59

Closed
claudio.atzori wants to merge 3221 commits from master into stable_ids
1 changed files with 3 additions and 8 deletions
Showing only changes of commit 1a89f8211c - Show all commits

View File

@ -164,14 +164,9 @@ public class CreateEntityTest {
final Consumer<ContextInfo> consumer = ci -> cInfoList.add(ci); final Consumer<ContextInfo> consumer = ci -> cInfoList.add(ci);
queryInformationSystem.getContextInformation(consumer); queryInformationSystem.getContextInformation(consumer);
cInfoList.forEach(cInfo -> { for(ContextInfo cInfo: cInfoList){
try { writer.write(new Gson().toJson(Process.getEntity(cInfo)));
writer.write(new Gson().toJson(Process.getEntity(cInfo))); }
} catch (IOException e) {
e.printStackTrace();
}
});
writer.close(); writer.close();
} }