Skip to content

Commit 18c7076

Browse files
committed
refactor(build): collapse unnecessary nesting
1 parent ccc3557 commit 18c7076

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

benchmark/build.gradle.kts

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,8 @@ kotlin {
3030
if (HostManager.hostIsMingw) mingwX64("native") { configureTarget() }
3131
if (HostManager.hostIsMac) macosX64("native") { configureTarget() }
3232

33-
sourceSets {
34-
sourceSets["commonMain"].apply {
35-
dependencies {
36-
implementation(project(":"))
37-
implementation("org.jetbrains.kotlinx:kotlinx-benchmark-runtime:0.4.4")
38-
}
39-
}
33+
sourceSets["commonMain"].dependencies {
34+
implementation(project(":"))
35+
implementation("org.jetbrains.kotlinx:kotlinx-benchmark-runtime:0.4.4")
4036
}
4137
}

0 commit comments

Comments
 (0)