javax.faces.component.UIComponentBase.rej Maven / Gradle / Ivy
Go to download
This is the master POM file for Oracle's Implementation of the JSF 2.1 Specification.
***************
*** 2003,2009 ****
public ChildrenListIterator(ChildrenList list, int index) {
this.list = list;
- if ((index < 0) || (index >= list.size())) {
throw new IndexOutOfBoundsException(String.valueOf(index));
} else {
this.index = index;
--- 2003,2009 ----
public ChildrenListIterator(ChildrenList list, int index) {
this.list = list;
+ if ((index < 0) || (index > list.size())) {
throw new IndexOutOfBoundsException(String.valueOf(index));
} else {
this.index = index;
© 2015 - 2024 Weber Informatics LLC | Privacy Policy