![JAR search and dependency download from the Maven repository](/logo.png)
dev.harrel.jsonschema.providers.MapUtil Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of json-schema Show documentation
Show all versions of json-schema Show documentation
Library for JSON schema validation
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