Skip to content

Commit 67dcb1f

Browse files
committed
Refactor
1 parent b325822 commit 67dcb1f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sdk1/src/test/java/com/amazonaws/services/dynamodbv2/datamodeling/encryption/DynamoDBEncryptorTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ public void ensureEncryptedAttributesUnmodified() throws GeneralSecurityExceptio
198198
Map<String, AttributeValue> encryptedAttributes =
199199
encryptor.encryptAllFieldsExcept(
200200
Collections.unmodifiableMap(attribs), context, "hashKey", "rangeKey", "version");
201-
HashMap<String, AttributeValue> beforeDecryption = new HashMap<>(encryptedAttributes);
201+
Map<String, AttributeValue> beforeDecryption = new HashMap<>(encryptedAttributes);
202202
encryptor.decryptAllFieldsExcept(
203203
Collections.unmodifiableMap(encryptedAttributes),
204204
context,

0 commit comments

Comments
 (0)