in src/main/java/org/apache/commons/dbutils/QueryLoader.java [82:92]
public synchronized Map<String, String> load(final String path) throws IOException {
Map<String, String> queryMap = this.queries.get(path);
if (queryMap == null) {
queryMap = this.loadQueries(path);
this.queries.put(path, queryMap);
}
return queryMap;
}