Here you can find the source of createMap(int len)
public static Map createMap(int len)
//package com.java2s; /*//from w ww . ja v a 2 s . c om * @(#)Utilities.java 2011-02-10 * * Copyright (c) 2007-2009 appNativa Inc. All rights reserved. * * Use is subject to license terms. */ import java.util.HashMap; import java.util.Map; public class Main { public static Map createMap(int len) { if (len < 1) { return new HashMap(); } return new HashMap(len); } }