You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (stop >= 0) System.arraycopy(array, 0, equalizer, 0, stop);
}
I can't see that this method has any side effect, desired or not. It copies an array passed to it, into a local variable, and when the method goes out of scope, the copy is lost.
What is the intention with the method? If it never has worked as intended, maybe it should be removed.
The text was updated successfully, but these errors were encountered:
I can't see that setEqualizer is used in the lines you are referring to, but it's called at line 375. I still don't see what happens. When you say "It really works but i am not fully aware how internally", what do you mean by internally?
Is there any way to validate this code, other that running it, and listening to the result?
java-stream-player/src/main/java/com/goxr3plus/streamplayer/stream/StreamPlayer.java
Lines 1250 to 1257 in 6a00a79
I can't see that this method has any side effect, desired or not. It copies an array passed to it, into a local variable, and when the method goes out of scope, the copy is lost.
What is the intention with the method? If it never has worked as intended, maybe it should be removed.
The text was updated successfully, but these errors were encountered: