[jbossseam-issues] [JBoss JIRA] Created: (JBSEAM-1461) seamdiscs: java.lang.IndexOutOfBoundsException: when I try to access the "Artists" page.

Pete Muir (JIRA) jira-events at lists.jboss.org
Fri Jun 15 06:37:11 EDT 2007


seamdiscs: java.lang.IndexOutOfBoundsException: when I try to access the "Artists" page.
----------------------------------------------------------------------------------------

                 Key: JBSEAM-1461
                 URL: http://jira.jboss.com/jira/browse/JBSEAM-1461
             Project: JBoss Seam
          Issue Type: Bug
          Components: Documentation
    Affects Versions: 1.3.0.ALPHA
            Reporter: Pete Muir
         Assigned To: Pete Muir


There appears to be an "off-by-one" error in the org.jboss.seam.framework.Query class (I'm rather new to seam, so it's possible the error is on the application side instead). In Query.truncResultList, I changed:

return results.subList(0, mr-1)

to:

return results.subList(0, mr)


-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        



More information about the seam-issues mailing list