Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 24a1f21

Browse files
committedSep 26, 2024·
m
1 parent c3d0cc8 commit 24a1f21

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed
 

‎DynamoDbEncryption/dafny/DynamoDbEncryptionTransforms/Model/AwsCryptographyDbEncryptionSdkDynamoDbTransformsTypes.dfy

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -782,11 +782,13 @@ abstract module AbstractAwsCryptographyDbEncryptionSdkDynamoDbTransformsService
782782
obj <- tmps9.Modifies | obj in tmps9.Modifies :: obj
783783
modifies set tmps10 <- set t10 <- config.tableEncryptionConfigs.Values | true
784784
&& t10.search.Some?
785-
, t11 <- t10.search.value.versions | true :: t11.keyStore,
785+
, t11 <- t10.search.value.versions | true
786+
:: t11.keyStore,
786787
obj <- tmps10.Modifies | obj in tmps10.Modifies :: obj
787788
modifies set tmps12 <- set t12 <- config.tableEncryptionConfigs.Values | true
788789
&& t12.search.Some?
789-
, t13 <- t12.search.value.versions | true && t13.keySource.multi?
790+
, t13 <- t12.search.value.versions | true
791+
&& t13.keySource.multi?
790792
&& t13.keySource.multi.cache.Some?
791793
&& t13.keySource.multi.cache.value.Shared?
792794
:: t13.keySource.multi.cache.value.Shared,
@@ -808,11 +810,13 @@ abstract module AbstractAwsCryptographyDbEncryptionSdkDynamoDbTransformsService
808810
obj <- tmps16.Modifies | obj in tmps16.Modifies :: obj
809811
) - ( set tmps17 <- set t17 <- config.tableEncryptionConfigs.Values | true
810812
&& t17.search.Some?
811-
, t18 <- t17.search.value.versions | true :: t18.keyStore,
813+
, t18 <- t17.search.value.versions | true
814+
:: t18.keyStore,
812815
obj <- tmps17.Modifies | obj in tmps17.Modifies :: obj
813816
) - ( set tmps19 <- set t19 <- config.tableEncryptionConfigs.Values | true
814817
&& t19.search.Some?
815-
, t20 <- t19.search.value.versions | true && t20.keySource.multi?
818+
, t20 <- t19.search.value.versions | true
819+
&& t20.keySource.multi?
816820
&& t20.keySource.multi.cache.Some?
817821
&& t20.keySource.multi.cache.value.Shared?
818822
:: t20.keySource.multi.cache.value.Shared,

0 commit comments

Comments
 (0)
Please sign in to comment.