Hi,
I backported the changes to 1.2.1.GA, and there seams to be a small bug.
The truncateResultList should return the nr of max results and not max results -1.
return results.subList(0, mr-1);
should be
return results.subList(0, mr-1);
Robert
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4047922#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...