Skip to content

Commit

Permalink
See issue 33, thanks @lucasso44
Browse files Browse the repository at this point in the history
  • Loading branch information
JorenSix committed Aug 29, 2022
1 parent a3065e7 commit d1c595b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@ private void query(String query, int maxNumberOfResults, Set<Integer> avoid, Que

//only continue processing when time factor is reasonable
if(timeFactor > Config.getFloat(Key.PANAKO_MIN_TIME_FACTOR) && timeFactor < Config.getFloat(Key.PANAKO_MAX_TIME_FACTOR) &&
frequencyFactor> Config.getFloat(Key.PANAKO_MIN_FREQ_FACTOR) && timeFactor < Config.getFloat(Key.PANAKO_MAX_FREQ_FACTOR) ) {
frequencyFactor> Config.getFloat(Key.PANAKO_MIN_FREQ_FACTOR) && frequencyFactor < Config.getFloat(Key.PANAKO_MAX_FREQ_FACTOR) ) {
List<PanakoMatch> filteredHits = new ArrayList<>();

hitlist.forEach( hit ->{
Expand Down

0 comments on commit d1c595b

Please sign in to comment.