Fix off-by-one error in subList. The java doc for subList states "Returns a
view of the portion of this list between the specified fromIndex, inclusive,
and toIndex, exclusive." Thus, the 2nd arg should be size() and not size()-1.
Original issue reported on code.google.com by bschoeni on 27 Jul 2012 at 12:51
Original issue reported on code.google.com by
bschoeni
on 27 Jul 2012 at 12:51Attachments: