Pawan Verma created OFBIZ-11830:
-----------------------------------
Summary: Replace Collection.sort() with List.sort()
Key: OFBIZ-11830
URL:
https://issues.apache.org/jira/browse/OFBIZ-11830 Project: OFBiz
Issue Type: Improvement
Components: ALL COMPONENTS
Affects Versions: Trunk
Reporter: Pawan Verma
Assignee: Pawan Verma
Replace Collection.sort() with List.sort()
{code:java}
Collections.sort(billingAccountList, new BillingAccountComparator());{code}
Replace with
{code:java}
billingAccountList.sort(new BillingAccountComparator());{code}
--
This message was sent by Atlassian Jira
(v8.3.4#803005)