From a3db0f14af291639ff10fff6a3ada5a5db11a45d Mon Sep 17 00:00:00 2001 From: Dmitry Savvinov Date: Wed, 19 Apr 2023 10:04:24 +0200 Subject: [PATCH] [mpp] Minor: fix broken link to docs ^KT-57144 Fixed --- .../kotlin/gradle/plugin/mpp/UnusedSourceSetsChecker.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libraries/tools/kotlin-gradle-plugin/src/common/kotlin/org/jetbrains/kotlin/gradle/plugin/mpp/UnusedSourceSetsChecker.kt b/libraries/tools/kotlin-gradle-plugin/src/common/kotlin/org/jetbrains/kotlin/gradle/plugin/mpp/UnusedSourceSetsChecker.kt index 9a2b5ef1e0d..b475125ee3c 100644 --- a/libraries/tools/kotlin-gradle-plugin/src/common/kotlin/org/jetbrains/kotlin/gradle/plugin/mpp/UnusedSourceSetsChecker.kt +++ b/libraries/tools/kotlin-gradle-plugin/src/common/kotlin/org/jetbrains/kotlin/gradle/plugin/mpp/UnusedSourceSetsChecker.kt @@ -24,7 +24,7 @@ object UnusedSourceSetsChecker { const val WARNING_BOTTOM_LINE = "You can add a source set to a target's compilation by connecting it with the compilation's default source set using 'dependsOn'.\n" + - "See https://kotlinlang.org/docs/reference/building-mpp-with-gradle.html#connecting-source-sets" + "See https://kotl.in/connecting-source-sets" private fun reportUnusedSourceSets(project: Project, sourceSets: Set) { require(sourceSets.isNotEmpty()) @@ -49,4 +49,4 @@ object UnusedSourceSetsChecker { } } } -} \ No newline at end of file +}