Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit cc43a4b

Browse files
committedNov 23, 2020
Do micro-refactoring
1 parent 87861b6 commit cc43a4b

File tree

1 file changed

+2
-2
lines changed
  • kotlin-jupyter-plugin/src/main/kotlin/org/jetbrains/kotlin/jupyter/build

1 file changed

+2
-2
lines changed
 

‎kotlin-jupyter-plugin/src/main/kotlin/org/jetbrains/kotlin/jupyter/build/distTasks.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -167,8 +167,8 @@ fun ProjectWithOptions.preparePyPiTasks() {
167167

168168
fun ProjectWithOptions.prepareAggregateUploadTasks() {
169169
val infixToSpec = mapOf<String, (UploadTaskSpecs<*>) -> TaskSpec>(
170-
"Dev" to { taskSpec -> taskSpec.dev },
171-
"Stable" to { taskSpec -> taskSpec.stable }
170+
"Dev" to { it.dev },
171+
"Stable" to { it.stable }
172172
)
173173

174174
infixToSpec.forEach { (infix, taskSpecGetter) ->

0 commit comments

Comments
 (0)
Please sign in to comment.