We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 531a871 commit 2031e39Copy full SHA for 2031e39
src/main/java/com/amazonaws/encryptionsdk/model/CiphertextHeaders.java
@@ -180,7 +180,7 @@ public Boolean isComplete() {
180
*/
181
private int parseVersion(final byte[] b, final int off) throws ParseException {
182
version_ = PrimitivesParser.parseByte(b, off);
183
- if (CiphertextType.deserialize(version_).getValue() != VersionInfo.CURRENT_CIPHERTEXT_VERSION ) {
+ if (CiphertextType.deserialize(version_).getValue() != VersionInfo.CURRENT_CIPHERTEXT_VERSION) {
184
throw new BadCiphertextException("Invalid version type.");
185
}
186
return 1;
0 commit comments