Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix js compilation
Browse files Browse the repository at this point in the history
e5l committed Sep 28, 2023
1 parent 65c34c1 commit 1933787
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ktor-utils/common/src/io/ktor/util/pipeline/Pipeline.kt
Original file line number Diff line number Diff line change
@@ -248,7 +248,7 @@ public open class Pipeline<TSubject : Any, TContext : Any>(
val interceptors = interceptorsForTests()
.joinToString("\n") { " " + it::class.toString() }

return "${this::class.qualifiedName}(0x${hashCode().toString(16)}) [\n$interceptors\n]"
return "${this::class}(0x${hashCode().toString(16)}) [\n$interceptors\n]"
}

internal fun phaseInterceptors(phase: PipelinePhase): List<PipelineInterceptorFunction<TSubject, TContext>> =

0 comments on commit 1933787

Please sign in to comment.