remove troubleshooting print

nix
Pierre Alexandre Tremblay 5 years ago
parent a94dabb313
commit 25069e59f1

@ -30,17 +30,12 @@ FluidBufSelect : FluidBufProcessor {
source.isNil.if {"FluidBufSelect: Invalid source buffer".throw}; source.isNil.if {"FluidBufSelect: Invalid source buffer".throw};
destination.isNil.if {"FluidBufSelect: Invalid destination buffer".throw}; destination.isNil.if {"FluidBufSelect: Invalid destination buffer".throw};
indices = indices.asArray; indices = indices.asArray;
channels = channels.asArray; channels = channels.asArray;
indices = [indices.size] ++ indices;
indices = [indices.size] ++ indices;
channels = [channels.size] ++ channels; channels = [channels.size] ++ channels;
indices.postln;
^this.new(server, nil, [destination]).processList([source, destination]++ indices ++ channels ++ [1], freeWhenDone, action);//NB always blocking ^this.new(server, nil, [destination]).processList([source, destination]++ indices ++ channels ++ [1], freeWhenDone, action);//NB always blocking
} }

Loading…
Cancel
Save