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

Pawan Verma closed OFBIZ-11829.
-------------------------------
    Fix Version/s: Upcoming Branch
       Resolution: Implemented

> 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
>             Fix For: Upcoming Branch
>
>         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)

Reply via email to