Cleanup (typos; formatting)

GitOrigin-RevId: 0f58421a363d63b0b84927ebc4dd762136a58ba8
This commit is contained in:
Roman Shevchenko
2023-10-11 12:17:40 +02:00
committed by intellij-monorepo-bot
parent 7ca14dd192
commit 2edd539ecd

View File

@@ -435,10 +435,10 @@ object PluginManagerCore {
for (id in set) {
val descriptor = idMap[id] ?: continue
selectedPlugins.add(descriptor)
processAllNonOptionalDependencies(rootDescriptor = descriptor, pluginIdMap = idMap, consumer = { dependency ->
processAllNonOptionalDependencies(descriptor, idMap) { dependency ->
if (dependency != null) selectedPlugins.add(dependency)
FileVisitResult.CONTINUE
})
}
}
selectedPlugins
}