Skip to content

Commit 6f8b2bd

Browse files
committed
removed cast in friend module declaration in build files
1 parent 5e9df02 commit 6f8b2bd

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

dataframe-geo/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ dependencies {
4949
}
5050

5151
tasks.withType<KotlinCompile>().configureEach {
52-
(this as BaseKotlinCompile).friendPaths.from(project(projects.core.path).projectDir)
52+
friendPaths.from(project(projects.core.path).projectDir)
5353
}
5454

5555
kotlinPublications {

dataframe-jupyter/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ kotlin {
3737
}
3838

3939
tasks.withType<KotlinCompile> {
40-
(this as BaseKotlinCompile).friendPaths.from(project(projects.core.path).projectDir)
40+
friendPaths.from(project(projects.core.path).projectDir)
4141
}
4242

4343
tasks.processJupyterApiResources {

plugins/kotlin-dataframe/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ tasks.test {
6868
}
6969

7070
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile>().configureEach {
71-
(this as BaseKotlinCompile).friendPaths.from(project(projects.core.path).projectDir)
71+
friendPaths.from(project(projects.core.path).projectDir)
7272
compilerOptions {
7373
freeCompilerArgs.addAll(
7474
"-Xcontext-receivers",

0 commit comments

Comments
 (0)