All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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.

There is a newer version: 2.1
Show newest version
***************
*** 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