I like the Eclipse autostart function, but sometimes I have indents that I don’t want to fix, for example
audioBuffer1[j] = (short) (VOLUME_REDUCER * ( inputBuffer[i]
+ ALPHA * inputBuffer[i - echo1a]
+ ALPHA * inputBuffer[i + echo1a]
- ALPHA * inputBuffer[i - echo1b]
- ALPHA * inputBuffer[i + echo1b]
));
which corrects for something terrible. Is there a way to make the function of automatic marching over some bits of code using @annotationor something?
source
share