Perhaps the normal for the loop is still correct, but I wanted to see if there is a more concise way to do this in java 8.
for (int i = 0; i < LIMIT; i++) {
Is there another java 8 way to do this. I really do not need, I just need to repeat something x times.
Thanks Nathan
java java-8
Nath5
source share