Format source code.

This commit is contained in:
John Blum
2020-06-10 02:01:47 -07:00
parent 139d52918c
commit 450cc58d82

View File

@@ -181,10 +181,8 @@ public class JsonCacheDataImporterExporter extends AbstractCacheDataImporterExpo
.map(this::getContent)
.map(this::toPdx)
.map(Arrays::stream)
.ifPresent(pdxInstances -> pdxInstances.forEach(pdxInstance -> {
pdxInstance = postProcess(pdxInstance);
region.put(getIdentifier(pdxInstance), pdxInstance);
}));
.ifPresent(pdxInstances -> pdxInstances.forEach(pdxInstance ->
region.put(getIdentifier(pdxInstance), postProcess(pdxInstance))));
return region;
}