Skip to content

Commit af7800c

Browse files
author
Dhriti Chopra
committed
fix: Fixing formatting issues
1 parent e4795b6 commit af7800c

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

google-cloud-storage/src/main/java/com/google/cloud/storage/ChecksumResponseParser.java

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,11 @@ private ChecksumResponseParser() {}
3636
static UploadPartResponse parseUploadResponse(HttpResponse response) {
3737
String eTag = response.getHeaders().getETag();
3838
Map<String, String> hashes = extractHashesFromHeader(response);
39-
return UploadPartResponse.builder().eTag(eTag).md5(hashes.get("md5")).crc32c(hashes.get("crc32c")).build();
39+
return UploadPartResponse.builder()
40+
.eTag(eTag)
41+
.md5(hashes.get("md5"))
42+
.crc32c(hashes.get("crc32c"))
43+
.build();
4044
}
4145

4246
static CompleteMultipartUploadResponse parseCompleteResponse(HttpResponse response)

0 commit comments

Comments
 (0)