use of com.jayway.jsonpath.JsonPath in project bender by Nextdoor.
the class JsonPathProvider method getPath.
private static JsonPath getPath(String pathStr) {
JsonPath path;
if ((path = CACHE.get(pathStr)) == null) {
path = JsonPath.compile(pathStr);
CACHE.put(pathStr, path);
}
return path;
}
Aggregations