There seams to be a bug in the query class.
truncResultList returns (maxResults-1) items at the moment
return results.subList(0, mr-1)
should be
return results.subList(0, mr)
Regards,
Robert
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4050484#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...