| 66 | } |
| 67 | |
| 68 | String Processor::createPluginID(const PluginDescription& d) { |
| 69 | return d.pluginFormatName + "-" + String::toHexString(d.uniqueId); |
| 70 | } |
| 71 | |
| 72 | String Processor::createPluginIDWithName(const PluginDescription& d) { |
| 73 | return d.pluginFormatName + (d.name.isNotEmpty() ? "-" + d.name : "") + "-" + String::toHexString(d.uniqueId); |
nothing calls this directly
no outgoing calls
no test coverage detected