Skip to content

Commit f8f3674

Browse files
committed
fix: build and kotlinc deprecations surfaced by updates
Signed-off-by: Sam Gammon <[email protected]>
1 parent 7152cd3 commit f8f3674

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/http/src/commonMain/kotlin/elide/http/HeaderValue.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public sealed interface HeaderValue {
5858
) : HeaderValue {
5959
override val count: UShort get() = value.first
6060
override val values: Sequence<HttpHeaderValue> get() = value.second
61-
override fun asString(): HttpHeaderValue = value.second.joinToString(", ") { it.toString() }
61+
override fun asString(): HttpHeaderValue = value.second.joinToString(", ")
6262
override fun toString(): String = asString()
6363
}
6464

tools/reports/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ val testCodeCoverageReport by reporting.reports.creating(JacocoCoverageReport::c
4545
}
4646

4747
dependencies {
48-
antJUnit("org.apache.ant", "ant-junit", "1.10.12")
48+
antJUnit("org.apache.ant:ant-junit:1.10.12")
4949
}
5050

5151
val locateCopyJUnitReports: TaskProvider<Copy> by tasks.registering(Copy::class) {

0 commit comments

Comments
 (0)