> Container c = > Container.builder() > .name(name) > - > .bytesUsed(Long.parseLong(from.getFirstHeaderOrNull(CONTAINER_BYTES_USED))) > - > .objectCount(Long.parseLong(from.getFirstHeaderOrNull(CONTAINER_OBJECT_COUNT))) > + .bytesUsed(bytesUsed==null?0:Long.parseLong(bytesUsed)) > + .objectCount(objectCount==null?0:Long.parseLong(objectCount))
Our checkstyle checks might complain about this. Use spaces: `bytesUsed == null ? 0 : ` --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds/pull/923/files#r53483161
