Skip to content
Snippets Groups Projects
Commit bdce0e72 authored by felmer's avatar felmer
Browse files

LMS-1431 bug fixed

SVN: 15092
parent 4ed1d14b
No related branches found
No related tags found
No related merge requests found
......@@ -363,7 +363,11 @@ public final class CachedResultSetManager<K> implements IResultSetManager<K>, Se
private <T> Set<String> gatherAllColumnIDs(final IResultSetConfig<K, T> resultConfig)
{
Set<String> ids = new HashSet<String>();
ids.addAll(resultConfig.getIDsOfPresentedColumns());
Set<String> idsOfPresentedColumns = resultConfig.getIDsOfPresentedColumns();
if (idsOfPresentedColumns != null)
{
ids.addAll(idsOfPresentedColumns);
}
GridFilters<T> filters = resultConfig.getFilters();
List<GridColumnFilterInfo<T>> filterInfos = filters.tryGetFilterInfos();
if (filterInfos != null)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment