Skip to content

Commit 344f118

Browse files
committed
Change JVM version
1 parent 7116221 commit 344f118

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

codegen/smithy-aws-kotlin-codegen/build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,13 @@ dependencies {
4444

4545
tasks.withType<KotlinCompile> {
4646
compilerOptions {
47-
jvmTarget.set(JvmTarget.JVM_17)
47+
jvmTarget.set(JvmTarget.JVM_1_8)
4848
}
4949
}
5050

5151
tasks.withType<JavaCompile> {
52-
sourceCompatibility = JavaVersion.VERSION_17.toString()
53-
targetCompatibility = JavaVersion.VERSION_17.toString()
52+
sourceCompatibility = JavaVersion.VERSION_1_8.toString()
53+
targetCompatibility = JavaVersion.VERSION_1_8.toString()
5454
}
5555

5656
// Reusable license copySpec

runtime/protocol/http-client/common/src/aws/smithy/kotlin/runtime/http/interceptors/HttpChecksumRequiredInterceptor.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public class HttpChecksumRequiredInterceptor : AbstractChecksumInterceptor() {
2424
// Don't calculate checksum
2525
context.protocolRequest
2626
} else {
27-
// Delegate checksum calculation to super class
27+
// Delegate checksum calculation to super class, calculateChecksum, and applyChecksum
2828
super.modifyBeforeSigning(context)
2929
}
3030

0 commit comments

Comments
 (0)