It should be possible to specify if you want deleted keywords or not in the panel showing unmatched project ideas..

This commit is contained in:
Tom Vahlman 2012-03-21 19:45:44 +01:00
parent 86acd6d422
commit 837c64ffba

@ -222,9 +222,8 @@ public class SupervisorUnmatchedThesisPanel extends Panel {
@Override
public Iterator<Keyword> getChoices(String input) {
final KeywordType kwtype = keywordTypeDao.findByType(keyWordType); // keyWordType is only the Type, but the object is required in findAllFromType
return keywordDao.getAutoCompleteCapableSupervisors(kwtype, input).iterator();
final KeywordType kwtype = keywordTypeDao.findByType(keyWordType);
return keywordDao.getAutoCompleteCapableSupervisors(kwtype, input, true).iterator();
}
@Override