Skip to content

Commit

Permalink
fixed a typo
Browse files Browse the repository at this point in the history
  • Loading branch information
antleb authored Feb 13, 2024
1 parent 0aef108 commit a9fe951
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public List<Result> query(List<Query> queryList, String orderBy) throws StatsSer
throw new StatsServiceException("query " + queryName + " not found!");
}

if (query.isUseCache) {
if (query.isUseCache()) {
cacheKey = StatsCache.getCacheKey(querySql, parameters, profile);

if (statsCache.exists(cacheKey)) {
Expand Down Expand Up @@ -97,4 +97,4 @@ public List<Result> query(List<Query> queryList, String orderBy) throws StatsSer
private String getNamedQuery(String queryName) throws IOException {
return namedQueryRepository.getQuery(queryName);
}
}
}

0 comments on commit a9fe951

Please sign in to comment.