Closed marschall closed 10 years ago
The implementation of CurrencyQueryBuilder#setNumericCodes(int...) is currently wrong. Instead of building a List<Integer> is stores a List<int[]> in the data map.
CurrencyQueryBuilder#setNumericCodes(int...)
List<Integer>
List<int[]>
Has been fixed by #179ca627cdd80be37a8974856c7b2d9109407466
The implementation of
CurrencyQueryBuilder#setNumericCodes(int...)
is currently wrong. Instead of building aList<Integer>
is stores aList<int[]>
in the data map.