Skip to content

Commit 29b34aa

Browse files
committed
ktlint
1 parent c931684 commit 29b34aa

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

runtime/auth/aws-signing-common/common/src/aws/smithy/kotlin/runtime/auth/awssigning/AwsSigningConfig.kt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,9 @@ public enum class AwsSigningAlgorithm {
2323
/**
2424
* AWS Signature Version 4 Asymmetric
2525
*/
26-
SIGV4_ASYMMETRIC;
26+
SIGV4_ASYMMETRIC,
27+
28+
;
2729

2830
/**
2931
* The name of this algorithm to use when signing requests.

runtime/auth/aws-signing-default/common/src/aws/smithy/kotlin/runtime/auth/awssigning/SigV4aSignatureCalculator.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,4 +85,4 @@ internal class SigV4aSignatureCalculator(override val sha256Provider: HashSuppli
8585
}
8686

8787
// Convert [this] [ByteArray] to a positive [BigInteger] by prepending 0x00.
88-
private fun ByteArray.toPositiveBigInteger() = BigInteger(byteArrayOf(0x00) + this)
88+
private fun ByteArray.toPositiveBigInteger() = BigInteger(byteArrayOf(0x00) + this)

0 commit comments

Comments
 (0)