| 70 | } |
| 71 | |
| 72 | String Processor::createPluginIDWithName(const PluginDescription& d) { |
| 73 | return d.pluginFormatName + (d.name.isNotEmpty() ? "-" + d.name : "") + "-" + String::toHexString(d.uniqueId); |
| 74 | } |
| 75 | |
| 76 | String Processor::createPluginIDDepricated(const PluginDescription& d) { |
| 77 | return d.pluginFormatName + (d.name.isNotEmpty() ? "-" + d.name : "") + "-" + String::toHexString(d.deprecatedUid); |
nothing calls this directly
no outgoing calls
no test coverage detected