Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
Christopher Gross cogross committed Feb 26, 2024
1 parent 58e31d4 commit cef4556
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ public class CachedResultsBean {
private CreatedQueryLogicCacheBean qlCache;

@Inject
private QueryPredictor<?> predictor;
private QueryPredictor predictor;

protected static final String BASE_COLUMNS = StringUtils.join(CacheableQueryRow.getFixedColumnSet(), ",");

Expand Down Expand Up @@ -368,7 +368,7 @@ protected GenericResponse<String> load(@Required("queryId") String queryId, Stri
// This RunningQuery may be in use. Make a copy using the defined Query.

RunningQuery rq = null;
QueryLogic<?> logic = null;
QueryLogic logic = null;
Query q = null;
BaseQueryMetric queryMetric = null;
try {
Expand Down

0 comments on commit cef4556

Please sign in to comment.