You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: libraries/tools/kotlin-gradle-plugin/src/common/kotlin/org/jetbrains/kotlin/gradle/plugin/mpp/MetadataDependencyTransformationTask.kt
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -84,33 +84,33 @@ open class MetadataDependencyTransformationTask
84
84
85
85
@Suppress("unused") // Gradle input
86
86
@get:Input
87
-
internalval inputSourceSetsAndCompilations:Map<String, Iterable<String>> by lazy {
87
+
protectedval inputSourceSetsAndCompilations:Map<String, Iterable<String>> by lazy {
88
88
participatingSourceSets.associate { sourceSet ->
89
89
sourceSet.name to sourceSet.internal.compilations.map { it.name }.sorted()
90
90
}
91
91
}
92
92
93
93
@Suppress("unused") // Gradle input
94
94
@get:Input
95
-
internalval inputCompilationDependencies:Map<String, Set<List<String?>>> by lazy {
95
+
protectedval inputCompilationDependencies:Map<String, Set<List<String?>>> by lazy {
0 commit comments