Back to project page slf4android.
The source code is released under:
MIT License
If you think the Android project slf4android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package pl.brightinventions.slf4android; // w w w .j a v a2s . c o m import java.util.ArrayList; import java.util.List; class Lists { public static List<String> newArrayList(Iterable<String> itemList) { ArrayList<String> result = new ArrayList<String>(); for (String item : itemList) { result.add(item); } return result; } }