On Thu, 23 Sep 2021 09:47:21 GMT, Andrey Turbanov
wrote:
>> There are few places in code where manual `for` loop is used with Iterator
>> to iterate over Collection.
>> Instead of manual `for` cycles it's preferred to use enhanced-for cycle
>> instead: it's less verbose, makes code easier to r
On Thu, 23 Sep 2021 08:35:38 GMT, Sergey Bylokhov wrote:
>> Andrey Turbanov has updated the pull request incrementally with one
>> additional commit since the last revision:
>>
>> 8274016: Replace 'for' cycles with iterator with enhanced-for in
>> java.desktop
>> cleanup toArray conversion
> There are few places in code where manual `for` loop is used with Iterator to
> iterate over Collection.
> Instead of manual `for` cycles it's preferred to use enhanced-for cycle
> instead: it's less verbose, makes code easier to read and it's less
> error-prone.
> It doesn't have any performa
On Thu, 23 Sep 2021 07:51:39 GMT, Andrey Turbanov
wrote:
>> There are few places in code where manual `for` loop is used with Iterator
>> to iterate over Collection.
>> Instead of manual `for` cycles it's preferred to use enhanced-for cycle
>> instead: it's less verbose, makes code easier to r
On Thu, 23 Sep 2021 04:43:55 GMT, Sergey Bylokhov wrote:
>> Andrey Turbanov has updated the pull request incrementally with one
>> additional commit since the last revision:
>>
>> 8274016: Replace 'for' cycles with iterator with enhanced-for in
>> java.desktop
>> cleanup toArray conversion
> There are few places in code where manual `for` loop is used with Iterator to
> iterate over Collection.
> Instead of manual `for` cycles it's preferred to use enhanced-for cycle
> instead: it's less verbose, makes code easier to read and it's less
> error-prone.
> It doesn't have any performa
On Sun, 19 Sep 2021 10:13:49 GMT, Andrey Turbanov
wrote:
> There are few places in code where manual `for` loop is used with Iterator to
> iterate over Collection.
> Instead of manual `for` cycles it's preferred to use enhanced-for cycle
> instead: it's less verbose, makes code easier to read
On Sun, 19 Sep 2021 10:13:49 GMT, Andrey Turbanov
wrote:
> There are few places in code where manual `for` loop is used with Iterator to
> iterate over Collection.
> Instead of manual `for` cycles it's preferred to use enhanced-for cycle
> instead: it's less verbose, makes code easier to read
There are few places in code where manual `for` loop is used with Iterator to
iterate over Collection.
Instead of manual `for` cycles it's preferred to use enhanced-for cycle
instead: it's less verbose, makes code easier to read and it's less error-prone.
It doesn't have any performance impact: j