You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ofbiz.apache.org by "Pawan Verma (Jira)" <ji...@apache.org> on 2020/06/18 11:44:00 UTC

[jira] [Updated] (OFBIZ-11829) Replace for-loop with forEach loop

     [ https://issues.apache.org/jira/browse/OFBIZ-11829?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Pawan Verma updated OFBIZ-11829:
--------------------------------
    Attachment: OFBIZ-11829-plugins.patch
                OFBIZ-11829.patch

> Replace for-loop with forEach loop
> ----------------------------------
>
>                 Key: OFBIZ-11829
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-11829
>             Project: OFBiz
>          Issue Type: Improvement
>          Components: ALL COMPONENTS
>    Affects Versions: Trunk
>            Reporter: Pawan Verma
>            Assignee: Pawan Verma
>            Priority: Minor
>         Attachments: OFBIZ-11829-plugins.patch, OFBIZ-11829.patch
>
>
> Replace for-loop with a forEach loop
>  
> {code:java}
> List<String> topics = new LinkedList<>();
> for (int i = 0; i < topicList.size(); i++) {
>     GenericValue assoc = topicList.get(i);
> {code}
> Replace with
>  
> {code:java}
> for (GenericValue assoc : topicList) {
> {code}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)