Commit 6ed4281a authored by Konstantin Hudyakov's avatar Konstantin Hudyakov Committed by intellij-monorepo-bot
Browse files

[Feedback] Remove workaround for accessing classes from Java plugin

(cherry picked from commit c7db862eb04058bf7f212e0e8f9d3b8d689645c6)

GitOrigin-RevId: 0c49cd4b224cb6cba2e515cfbbff4cbdb1254c9e
parent 246ff358
Branches unavailable Tags unavailable
No related merge requests found
Showing with 1 addition and 6 deletions
+1 -6
......@@ -205,12 +205,7 @@ private fun collectDirectDependenciesInOldFormat(rootDescriptor: IdeaPluginDescr
}
}
if (rootDescriptor.pluginId == PluginManagerCore.JAVA_PLUGIN_ID) {
idMap.get(PluginManagerCore.CORE_ID.idString)!!.content.modules.firstOrNull { it.name == "intellij.platform.feedback" }?.let {
result.add(it.requireDescriptor())
}
}
else if (knownNotFullyMigratedPluginIds.contains(rootDescriptor.pluginId.idString)) {
if (knownNotFullyMigratedPluginIds.contains(rootDescriptor.pluginId.idString)) {
idMap.get(PluginManagerCore.CORE_ID.idString)!!.content.modules.mapTo(result) { it.requireDescriptor() }
}
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment