GC optimization
Java's for each
loop is a big source of garbage. Every time it records a value, it creates an instance of ArrayList Iterator. The release addressed the issue by using the traditional index based for loop
instead.
Java's for each
loop is a big source of garbage. Every time it records a value, it creates an instance of ArrayList Iterator. The release addressed the issue by using the traditional index based for loop
instead.