GlenKPeterson / Paguro

Generic, Null-safe, Immutable Collections and Functional Transformations for the JVM
Other
312 stars 24 forks source link

Wrong bounds check in UnmodList.listIterator #7

Closed pniederw closed 8 years ago

pniederw commented 8 years ago

is: if ( (index < 0) || (index >= size()) ) sb: is: if ( (index < 0) || (index > size()) )

GlenKPeterson commented 8 years ago

Thank you! This is fixed in 1.0.3 which has been deployed to Maven.