All Downloads are FREE. Search and download functionalities are using the official Maven repository.

dev.harrel.jsonschema.providers.MapUtil Maven / Gradle / Ivy

There is a newer version: 1.7.3
Show newest version
package dev.harrel.jsonschema.providers;

import java.util.HashMap;

final class MapUtil {
    private MapUtil() {}

    static  HashMap newHashMap(int realCapacity) {
        return new HashMap<>((int) Math.ceil(realCapacity / 0.75));
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy