Skip to content

Commit b610455

Browse files
committed
remove debug statements
1 parent 6c3a696 commit b610455

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

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

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -102,8 +102,6 @@ public void validateCrc32c(String expectedCrc32cBase64, int calculatedCrc32c) th
102102
Crc32cValue<?> expected = Crc32cValue.of(expectedVal, 0);
103103
Crc32cValue.Crc32cLengthKnown actual = Crc32cValue.of(calculatedCrc32c, 0);
104104

105-
// Invoke standard package-private validate path natively
106-
System.out.println("validating checksum");
107105
hasher.validate(expected, actual);
108106
}
109107

@@ -120,7 +118,6 @@ public void validateCrc32c(String expectedCrc32cBase64, byte[] content) throws I
120118
int expectedVal = Ints.fromByteArray(decoded);
121119

122120
Crc32cValue<?> expected = Crc32cValue.of(expectedVal, 0);
123-
System.out.println("validating checksum");
124121
hasher.validate(
125122
expected,
126123
new Supplier<ByteBuffer>() {

0 commit comments

Comments
 (0)