Skip to content

Commit

Permalink
at least take the query words into the search
Browse files Browse the repository at this point in the history
  • Loading branch information
Coos Baakman committed Feb 16, 2024
1 parent 3a902c0 commit e4b0b86
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ private Set<String> findAssociatedWords(String query)
{
List<TermAssociation> associations = ontologySearcher.getAssociations(query);

Set<String> words = new HashSet<String>();
Set<String> words = new HashSet<String>(ontologySearcher.getKeywordsFromString(query));
for (TermAssociation association : associations) {

words.add(association.getValue());
Expand Down

0 comments on commit e4b0b86

Please sign in to comment.