Skip to content

Commit 7dcb67f

Browse files
committed
lint
1 parent fdc2659 commit 7dcb67f

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public class AwsChunkedSource(
3838
) : SdkSource {
3939
@Deprecated(
4040
"This overload causes `runBlocking` to be called without a CoroutineContext which leads to forgetting " +
41-
"logging context. This overload will be removed in minor version 1.7.",
41+
"logging context. This overload will be removed in minor version 1.7.",
4242
ReplaceWith(
4343
"AwsChunkedSource(delegate, signer, signingConfig, previousSignature, trailingHeaders, coroutineContext)",
4444
"kotlin.coroutines.coroutineContext",

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ public fun HttpRequestBuilder.setAwsChunkedHeaders() {
8181
*/
8282
@Deprecated(
8383
"This overload causes `runBlocking` to be called without a CoroutineContext which leads to forgetting logging " +
84-
"context. This overload will be removed in minor version 1.7.",
84+
"context. This overload will be removed in minor version 1.7.",
8585
ReplaceWith(
8686
"AwsChunkedSource(delegate, signer, signingConfig, previousSignature, trailingHeaders, coroutineContext)",
8787
"kotlin.coroutines.coroutineContext",

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ private val chunkedChannelFactory = object : AwsChunkedReaderFactory {
2929
previousSignature: ByteArray,
3030
trailingHeaders: DeferredHeaders,
3131
): AwsChunkedTestReader {
32-
3332
val ch = SdkByteReadChannel(data)
3433
val chunked = AwsChunkedByteReadChannel(ch, signer, signingConfig, previousSignature, trailingHeaders)
3534
return object : AwsChunkedTestReader {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ private val chunkedSourceFactory = object : AwsChunkedReaderFactory {
1919
signer: AwsSigner,
2020
signingConfig: AwsSigningConfig,
2121
previousSignature: ByteArray,
22-
trailingHeaders: DeferredHeaders
22+
trailingHeaders: DeferredHeaders,
2323
): AwsChunkedTestReader {
2424
val source = data.source()
2525
val chunked = AwsChunkedSource(

0 commit comments

Comments
 (0)