Skip to content

Commit f925bfc

Browse files
committed
fix: remove operator fun for simplicity
1 parent 3271208 commit f925bfc

File tree

1 file changed

+2
-3
lines changed
  • build-logic/convention/src/main/kotlin/com/google/samples/apps/nowinandroid

1 file changed

+2
-3
lines changed

build-logic/convention/src/main/kotlin/com/google/samples/apps/nowinandroid/Jacoco.kt

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,11 +94,10 @@ internal fun Project.configureJacoco(
9494
?.all
9595
?.map { directories -> directories.map { it.asFile.path } }
9696
?: provider { emptyList() }
97-
operator fun Provider<List<String>>.plus(other: Provider<List<String>>) =
98-
zip(other) { first, second -> first + second }
9997
sourceDirectories.setFrom(
10098
files(
101-
variant.sources.java.toFilePaths() + variant.sources.kotlin.toFilePaths()
99+
variant.sources.java.toFilePaths(),
100+
variant.sources.kotlin.toFilePaths()
102101
),
103102
)
104103

0 commit comments

Comments
 (0)