File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed
dokka-runners/dokka-gradle-plugin/src/main/kotlin/engine/parameters Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,6 @@ package org.jetbrains.dokka.gradle.engine.parameters
55
66import org.gradle.api.*
77import org.gradle.api.file.ConfigurableFileCollection
8- import org.gradle.api.file.FileCollection
98import org.gradle.api.model.ObjectFactory
109import org.gradle.api.plugins.ExtensionAware
1110import org.gradle.api.provider.Property
@@ -454,7 +453,7 @@ constructor(
454453 suppressedFiles.none { suppressedFile ->
455454 sourceFile.startsWith(suppressedFile)
456455 }
457- }.sorted() // FileTrees have an unstable order (even on the same machine)
456+ }.sortedBy { it.invariantSeparatorsPath } // FileTrees have an unstable order (even on the same machine)
458457
459458 companion object {
460459
You can’t perform that action at this time.
0 commit comments