[plugins] IJPL-202170 rename ContentModuleDescriptor.moduleName to moduleId

GitOrigin-RevId: ab62fbb76c772f2a72022f808bc16000d089a9a9
This commit is contained in:
Vadim Salavatov
2025-08-15 18:59:21 +00:00
committed by intellij-monorepo-bot
parent 6be741934a
commit 621bb0a07c
21 changed files with 57 additions and 59 deletions
@@ -33,7 +33,7 @@ public class RunServiceInPlugin extends RunClassInPlugin {
List<ContentModuleDescriptor> modules = IdeaPluginDescriptorImplKt.getContentModules((IdeaPluginDescriptorImpl)plugin);
if (!modules.isEmpty()) {
for (var module : modules) {
if (myClazzName.contains(module.getModuleName())) {
if (myClazzName.contains(module.getModuleId())) {
loader = module.getClassLoader();
}
}