| Issue 15: | RecordEnumerationImpl.rebuild() does not filter properly | |
| 1 person starred this issue and may be notified of changes. | Back to list |
In my debugger I have seen the filter comparing the same record repeatedly.
I believe in the case where the filter matches data, you should increment
the recordId.
RecordEnumerationImpl.java, line 194:
if (filter != null && !filter.matches(data)) {
recordId++; // <----- Add this
continue;
}
Nov 18, 2009
Project Member
#1
bar...@gmail.com
|