| 59 | } |
| 60 | |
| 61 | bool PluginProcessor::isMidiEffect() const { |
| 62 | #if JucePlugin_IsMidiEffect |
| 63 | return true; |
| 64 | #else |
| 65 | return false; |
| 66 | #endif |
| 67 | } |
| 68 | |
| 69 | double PluginProcessor::getTailLengthSeconds() const { |
| 70 | return 0.0; |
nothing calls this directly
no outgoing calls
no test coverage detected