Checkstyle! also rename new method

This commit is contained in:
2025-02-26 17:01:40 -06:00
parent 7efd8264fa
commit 9fb53af0ba
2 changed files with 5 additions and 3 deletions

View File

@ -76,9 +76,11 @@ public interface QCustomPossibleValueProvider<T extends Serializable>
/*************************************************************************** /***************************************************************************
* ** meant to be protected (but interface...) - for a custom PVS implementation
** to complete its search (e.g., after it generates the list of PVS objects,
** let this method do the filtering).
***************************************************************************/ ***************************************************************************/
default List<QPossibleValue<T>> _defaultSearch(SearchPossibleValueSourceInput input, List<QPossibleValue<T>> possibleValues) default List<QPossibleValue<T>> completeCustomPVSSearch(SearchPossibleValueSourceInput input, List<QPossibleValue<T>> possibleValues)
{ {
SearchPossibleValueSourceAction.PreparedSearchPossibleValueSourceInput preparedInput = SearchPossibleValueSourceAction.prepareSearchPossibleValueSourceInput(input); SearchPossibleValueSourceAction.PreparedSearchPossibleValueSourceInput preparedInput = SearchPossibleValueSourceAction.prepareSearchPossibleValueSourceInput(input);

View File

@ -82,7 +82,7 @@ public class TablesCustomPossibleValueProvider implements QCustomPossibleValuePr
} }
} }
return _defaultSearch(input, allPossibleValues); return completeCustomPVSSearch(input, allPossibleValues);
} }
} }