Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
aajtodd committed Oct 4, 2023
1 parent 1a2aa75 commit e9282db
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 5 deletions.
2 changes: 0 additions & 2 deletions aws-runtime/aws-endpoint/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@ description = "AWS Endpoint Support"
extra["displayName"] = "AWS :: SDK :: Kotlin :: Endpoint"
extra["moduleName"] = "aws.sdk.kotlin.runtime.endpoint"

val smithyKotlinVersion = libs.versions.smithy.kotlin.version.get()

kotlin {
sourceSets {
commonMain {
Expand Down
2 changes: 0 additions & 2 deletions aws-runtime/aws-http/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@ description = "HTTP core for AWS service clients"
extra["displayName"] = "AWS :: SDK :: Kotlin :: HTTP"
extra["moduleName"] = "aws.sdk.kotlin.runtime.http"

val smithyKotlinVersion = libs.versions.smithy.kotlin.version.get()

kotlin {
sourceSets {
commonMain {
Expand Down
2 changes: 1 addition & 1 deletion codegen/sdk/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ fun parseMembership(rawList: String?): Membership {
when {
item.startsWith('-') -> exclusions.add(item.substring(1))
item.startsWith('+') -> inclusions.add(item.substring(1))
else -> error("Must specify inclusion (+) or exclusion (-) prefix character to $item.")
else -> inclusions.add(item)
}
}

Expand Down

0 comments on commit e9282db

Please sign in to comment.