Back to project page Helpers.
The source code is released under:
MIT License
If you think the Android project Helpers 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 at.wrdlbrnft.helpers; //from w ww .j a v a2 s .c o m import java.util.HashMap; import java.util.Map; /** * Created by Xaver on 16/07/14. */ public class Maps { public static <K, V> Map<K, V> newMap() { return new HashMap<K, V>(); } public static <K, V> Map<K, V> newMap(Map<K, V> map) { return new HashMap<K, V>(map); } }