mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-14 09:00:20 +07:00
Fix the logic, take non-empty strings as they were supposed to initially
(cherry picked from commit d4f568d2e21663d5a042e583772bbebb2451d37e) IJ-MR-144415 GitOrigin-RevId: b4fa3f315880c102c3bdd6068fcc5b56c9fcd18d
This commit is contained in:
committed by
intellij-monorepo-bot
parent
23012744fc
commit
1f9c1681f7
@@ -77,7 +77,7 @@ private class InspectopediaExtractor : ModernApplicationStarter() {
|
||||
val wrapper = scopeToolState.tool
|
||||
val extension = wrapper.extension
|
||||
val pluginId = extension?.pluginDescriptor?.pluginId?.idString ?: ideName
|
||||
val description = wrapper.loadDescription()?.splitToSequence("<!-- tooltip end -->")?.map { it.trim() }?.filter { it.isEmpty() }?.toList()
|
||||
val description = wrapper.loadDescription()?.split("<!-- tooltip end -->")?.map { it.trim() }?.filter { it.isNotEmpty() }?.toList()
|
||||
?: emptyList()
|
||||
|
||||
var panelInfo: List<OptionsPanelInfo>? = null
|
||||
|
||||
Reference in New Issue
Block a user